-
-
Save hungtrinh/fd5a90e0ccc52cfb47b7dc6cc74c5f9e to your computer and use it in GitHub Desktop.
Multiple layouts with React Router v4
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
import React from "react" | |
import { Route, Switch } from "react-router-dom" | |
const AppRoute = ({ component: Component, layout: Layout, ...rest }) => ( | |
<Route {...rest} render={props => ( | |
<Layout> | |
<Component {...props} /> | |
</Layout> | |
)} /> | |
) | |
const MainLayout = props => ( | |
<div> | |
<h1>Main</h1> | |
{props.children} | |
</div> | |
) | |
const AltLayout = props => ( | |
<div> | |
<h1>Alt</h1> | |
{props.children} | |
</div> | |
) | |
const Foo = () => ( | |
<p>Foo</p> | |
) | |
const Bar = () => ( | |
<p>Bar</p> | |
) | |
const App = () => ( | |
<div> | |
<Switch> | |
<AppRoute exact path="/foo" layout={MainLayout} component={Foo} /> | |
<AppRoute exact path="/bar" layout={AltLayout} component={Bar} /> | |
</Switch> | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment