Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Last active August 15, 2016 18:26
Show Gist options
  • Save ryanflorence/1503530ea2f44c92672ab59801e66e8f to your computer and use it in GitHub Desktop.
Save ryanflorence/1503530ea2f44c92672ab59801e66e8f to your computer and use it in GitHub Desktop.
class App extends React.Component {
render() {
return (
<Router>
{({ location }) => (
<div>
<Nav/>
<Main>
{redirects.map(redirect => <Redirect {...redirect}/>)}
{routes.map(route => <Match {...route}/>)}
</Main>
</div>
)}
</Router>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment