Using Crossing with React-Router
By Brian Luft on
With the version 1.0 release of react-router, the named Route feature was dropped. In earlier versions, you were able to define each Route with a name parameter: <Route path="/account/billing" name="account-billing" /> and link to the RouteHandler via: <Link to="account-billing">Billing</Link> This …