Created
June 14, 2019 04:12
-
-
Save charly-palencia/6d20cae81f7d17c92ec4f1831454f64c 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 { BrowserRouter as Router, Route } from "react-router-dom"; | |
import Home from "./pages/Home"; | |
… | |
<Router> | |
<Header> | |
... | |
<StyledLink to="/home">Home page</StyledLink> | |
<StyledLink to="/">Index page</StyledLink> | |
<Route path="/home" exact component={Home} /> | |
</Header> | |
</Router> | |
… |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment