react-router 4, как все хорошо организовать?
const history = createBrowserHistory();
render(
<Provider store={store}>
<Router history={history}>
<Switch>
<Route exact={true} path="/" component={MainPage} />
<Route path="/catalog" component={Catalog} />
<Route path="/basket" component={Basket} />
<Route path="/bouquet" component={Bouquet} />
<Route path="/tracking" component={Tracking} />
<Route path="/dashboard" component={DashBoard} />
</Switch>
</Router>
</Provider>
, document.getElementById("root"));
у меня раньше было так, что вообще не ок было
Че тут не ок?
Лучше перенести данные роутов в массив
Обсуждают сегодня