I have problem with react router.
This is my Router:
    <Router>
    <div>
      <Route exact path="/dashboard" component={projetList} />
      <Route path="/dashboard/:id" component={ 
        (props) => <Editor documentID={props.match.params.id} />
      } />
    </div>
    </Router>
And Link to:
  <Link to="/dashboard">
    <button type="button" class="btn btn-outline-success">
  </Link>
Problem description:
When I click my element - browser try to go to the http://localhost:3000/dashboard but the site is blank.
When I refresh my site (F5 button) then my component load.
