I have a strange problem with React Router Dom. In my code I have:
if (this.state.area) {
return (<Redirect push to = {'/ service_list'} />)
}
In the url it correctly writes "localhost: 3000 / list_services, but it seems not to load the page. If I press enter, or reload the page, it is displayed correctly. Can anyone help me? In my route file i have:
<Route exact path="/emilia_romagna">
<Home/>
</Route>
<Route exact path="/lista_servizi">
<ListaServizi/>
</Route>