Created
October 26, 2015 21:16
-
-
Save philippTheCat/3f26d04f951df8bd9e04 to your computer and use it in GitHub Desktop.
Revisions
-
philippTheCat created this gist
Oct 26, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ import {Router, Route} from 'react-router'; var routes = ( <Router> <Route path="/" component={App}> <Route path="about" component={About} /> <Route path="inbox" component={Inbox} /> </Route> </Router> ); export routes;