<Provider store = {store}>
<Router history = {history} >
<section>
<Header/>
<Route exact path="/" component={DealList}/>
<Route path = "/deal" component={FormDeal}/>
<Route path = "/admin" component={Admin}/>
<Footer/>
</section>
</Router>
</Provider>
I want to access the url of the browser through my Header component . But this.props is empty .
How do i access the url and is the routing for header and footer fine with react-router version-4
You can use
withRouter
function.In your case you could write something like that: