I just started with reactjs and I don't quite seem to understand how to use it with buttons. So I got these two buttons here
<a className="button is-warning">
Sign up
</a>
<a className="button is-warning">
Login
</a>
And I want them to link to
<Route path="/account" component={Account}/>
<Route path="/start" component={Start}/>
I know there are already quite a few questions and answers about this topic here and I also watched tutorials and try to figure it out, but still I can't seem to get into my head how to do it.