Created
May 22, 2018 02:01
-
-
Save zaguiini/8858924d4854dc30d962567a36776b32 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
import React from 'react' | |
import { | |
BrowserRouter, | |
Route, | |
} from 'react-router-dom' | |
import Home from './Home' | |
import Settings from './Settings' | |
export default () => ( | |
<BrowserRouter> | |
<React.Fragment> | |
<Route exact path="/" component={Home} /> | |
<Route exact path="/settings" component={Settings} /> | |
</React.Fragment> | |
</BrowserRouter> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment