Related post on Github
Currently I have a hard time using the two libraries in my react-redux app correctly.
My codes look like:
index.js
import { Provider } from 'react-redux';
import { ConnectedRouter } from 'connected-react-router';
...
ReactDOM.render(
<Provider store={store}>
<ConnectedRouter history={history}>
<App />
</ConnectedRouter>
</Provider>,
rootElement
);
App.js
...
export default () => (
<Layout>
<Switch>
<Route exact path="/" component={Home} />
<Route path="/test" component={Test} />
</Switch>
</Layout>
);
Layout.js
...
export default function Layout(props) {
return (
<div class="ms-Fabric">
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-lg2">
<Navigation />
</div>
<div class="ms-Grid-col ms-lg10">{props.children}</div>
</div>
</div>
);
}
Navigation.js
import React from 'react';
import { withRouter } from 'react-router-dom';
import { Nav } from 'office-ui-fabric-react';
export default withRouter(({ history }) => (
<div className="ms-NavExample-LeftPane">
<Nav
onLinkClick={(event, element) => {
event.preventDefault();
history.push(element.url);
}}
groups={[
{
links: [
{
name: 'Home',
url: '/',
key: 'home'
},
{
name: 'Test',
url: '/Test',
key: 'test'
}
]
}
]}
/>
</div>
));
However, when I run the app it shows You should not use <Route> outside a <Router>
. The navigation is certainly in the ConnectedRouter
and it seems this router works well with react-router
v4 so I'm not sure how to deal with this problem.
Could anyone please give me a suggestion?
The architecture of your project: Provider > ConnectedRouter > App > Layout (have NavLink) > Switch > Routes
You have to build architecture in this way: Provider > ConnectedRouter > routes file > Switch > Routes > Layout in component