Skip to content

Commit

Permalink
refactor: app links to multiple line
Browse files Browse the repository at this point in the history
  • Loading branch information
Param-Harrison committed Jul 25, 2019
1 parent 45efaed commit f4388f1
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/App.js
Expand Up @@ -84,13 +84,17 @@ const App = () => {
return (
<section className="App">
<Router>
<Link to="/">Home</Link>
<Link to="/about">About</Link>
<Link to="/users">Users</Link>
<Link to="/search?q=react">Search</Link>
<Link to="/404-not-found">404</Link>
<Link to="/props-through-component">Props through component</Link>
<Link to="/props-through-render">Props through render</Link>
<div>
<Link to="/">Home</Link>
<Link to="/about">About</Link>
<Link to="/users">Users</Link>
<Link to="/search?q=react">Search</Link>
<Link to="/404-not-found">404</Link>
</div>
<div>
<Link to="/props-through-component">Props through component</Link>
<Link to="/props-through-render">Props through render</Link>
</div>
<Switch>
<Route exact path="/" component={IndexPage} />
<Route exact path="/users" component={UsersPage} />
Expand Down

0 comments on commit f4388f1

Please sign in to comment.