-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2458 from reduxjs/docs/ds2-21-updates
- Loading branch information
Showing
9 changed files
with
1,963 additions
and
1,930 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import type { ComponentProps } from 'react' | ||
import React from 'react' | ||
import Main from '@theme-original/DocPage/Layout/Main' | ||
import type MainType from '@theme-original/DocPage/Layout/Main' | ||
import BraveWarning from './BraveWarning' | ||
|
||
type Props = ComponentProps<typeof MainType> | ||
|
||
export default function MainWrapper(props: Props): JSX.Element { | ||
return ( | ||
<> | ||
<Main {...props}> | ||
<BraveWarning /> | ||
{props.children} | ||
</Main> | ||
</> | ||
) | ||
} |
This file was deleted.
Oops, something went wrong.
85 changes: 0 additions & 85 deletions
85
website/src/theme/DocPageWithBraveWarning/styles.module.css
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.