Created
May 5, 2017 21:08
-
-
Save vivmaha/2606473300a27e00de6ea36e6f845c50 to your computer and use it in GitHub Desktop.
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
// Example usage of https://gist.github.com/vivmaha/f34fdea72d0f1fa0467a671b5ec7321e | |
render( | |
( | |
<BrowserRouter> | |
<div> | |
<ScrollToTop /> | |
<Route exact path="/" component={Home} /> | |
<Route path="/article/:id" component={Article} /> | |
<Route path="/series/:id" component={ArticleSet} /> | |
</div> | |
</BrowserRouter> | |
), | |
document.getElementById("content") | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment