<Router history={history}>
<BrowserRouter>
<Switch>
<PublicRouter path="/auth/login" component={Login}/>
<PrivateRouter exact path="/category" component={CategoryList}/>
<PrivateRouter path="/category/:id" component={CategoryEdit}/>
<PrivateRouter exact path="/product" component={ProductList}/>
<PrivateRouter path="/product/:id" component={ProductEdit}/>
<PrivateRouter path="/" component={Home}/>
</Switch>
</BrowserRouter>
</Router>
BrowserRouter внутри не надо
Обсуждают сегодня