-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Root component for app-wide context and stateful logic; Improve m…
…ax width for example page templates; List examples at root level of site menu instead of under a dropdown
- Loading branch information
1 parent
2d9003a
commit 2d074a7
Showing
3 changed files
with
30 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react' | ||
|
||
/** | ||
* Add stateful logic that is not re-initialized across navigations | ||
* @see https://docusaurus.io/docs/next/swizzling#wrapper-your-site-with-root | ||
*/ | ||
export default function Root({ children }) { | ||
|
||
// TODO: React Context provider | ||
|
||
return <>{children}</> | ||
} |