I have problem when I hit F5 in the browser.
I have route defined in react-router:
<Route name="realestatesPrefiltered" path="realestatesPrefiltered/:search/:type" handler={RealEstatesPage}/>
and route on node.js
app.use(route.get("/realestatesPrefiltered/:search/:type", getLayout));
but when I hit F5 i see blank page, why ?
I have another route without parameters.
<Route name="realestates" handler={RealEstatesPage}/>
app.use(route.get("/realestates", getLayout));
and everything is working ok.