Last active
November 11, 2022 13:14
-
-
Save dannycallaghan/a1b34b4829374f69b0c1c0adf86f5710 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// index.js | |
<React.StrictMode> | |
<BrowserRouter> | |
<App /> | |
</BrowserRouter> | |
</React.StrictMode> | |
// App.js - notice how Home is nested in Layout | |
<Routes> | |
<Route path="/" element={<Layout />}> | |
<Route path="/" element={<Home />} /> | |
<Route path="/foo" element={<Foo />} /> | |
</Route> | |
</Routes> | |
// Layout.js | |
<> | |
<Nav /> | |
<Outlet /> | |
</> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment