I didn't find it. The link https://react-router.now.sh/Match that I was using before returns Not found
The docs are at https://reacttraining.com/react-router/
sorry but in my code I use import { Redirect, Match, Miss } from 'react-router'; with react router 4.0.0-alpha.6 The docs you gave me does not document the <Match> . Should I switch to version 3.0.2 ?
<Match exactly pattern='/some-place'> -> <Route exact path='/some-place'><Miss> no longer exists, use a <Switch>react-router-dom (npm install --save react-router-dom@next) for browser based sites.Does this mean yes ?
That is how to upgrade from the alpha to the beta. The changes are very simple, just rename a few components/props.
@CyrilWork It sounds like you're looking for a stable release. For that, yes, I'd recommend you use version 3.0.2 which is on the master branch.
Thanks a lot
Most helpful comment
That is how to upgrade from the alpha to the beta. The changes are very simple, just rename a few components/props.