Thursday, 10 October 2019

Multiple path names for a same component in Reach Router

I am using the same component for three different routes:

<Router>
    <Home path="/" />
    <Home path="/home" />
</Router>

Is there anyway to combine it, to be like:

<Router>
    <Home path=["/home", "/"] />
</Router>


from Multiple path names for a same component in Reach Router

No comments:

Post a Comment