I have a simple router which is possible via the @reach/router module
<Router>
<Home path="/" />
<Resume path="resume" />
</Router>
When someone enter the full URL ending in "/resume" I would like the resume component to show up and I thought this happens automatically via @reach/router but does not seem to be the case.
any strategies to making this work?