Skip to content

Instantly share code, notes, and snippets.

@charly-palencia
Created June 14, 2019 04:12
Show Gist options
  • Save charly-palencia/6d20cae81f7d17c92ec4f1831454f64c to your computer and use it in GitHub Desktop.
Save charly-palencia/6d20cae81f7d17c92ec4f1831454f64c to your computer and use it in GitHub Desktop.
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