I have my routes difined, and when i navigate to products/new
, works fine, but if refresh page, he products/new
not enter, he returns unexpected token.
Route Config.
<Router history={createBrowserHistory()}>
<Route path="/" component={Layout}>
<IndexRoute component={Home} />
<Route path="produtos/novo" component={ProductsNew}/>
<Route path="produtos" component={Products} />
</Route>