Last active
November 14, 2019 12:04
-
-
Save theodesp/a041e3f0176516b6767a2d71e9c0376b 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 {Switch, Route, HashRouter as Router} from 'react-router-dom'; | |
import Home from "./Home"; | |
import './App.css'; | |
const App = () => ( | |
<Router> | |
<Switch> | |
<Route exact path="/" component={Home} /> | |
</Switch> | |
</Router> | |
); | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment