<Route exact path="/">
<Home />
</Route>
# The exact prop above tells the Router component to match the path exactly. If you don't add the exact prop on the / path, it will match with all the routes starting with a / including /about.
<Route path="/about">
<About />
</Route>