Things needed to create a route:
1 2 3 4 5 6<Router> <Link to="/">Home</Link> <Link to="/about">About</Link> <Route path="/" component={IndexPage} /> <Route path="/about" component={AboutPage} /> </Router>
Something to note:
Link has to be children of RouterLink is different from HTML <a> tag whereby Link allows client-side routing by checking with Router which checks with Routes; <a> create server-side routing1 2<Route exact path="/" component={IndexPage} /> <Route exact path="/about" component={AboutPage} />