I have following routes in the application:
<Switch>
    <Route path="/shops/:id">
       <StoreDetails/>
    </Route>
    <Route path="/shops">
        <Stores/>
    </Route>
   <Route path="/">
      <Home/>
   </Route>
</Switch>
how do I deep link /shops and /shops/:id URLs??
 
    