Это корневой файл, собственно как настроить динамический роутинг?
Для таблицы, чтобы это был не Link и не Button, а
событие onClick для всей строки таблицы.
Перешерстил все. Доки, форумы.... ничего внятного не нашел.
ReactDOM.render(
<Provider store={store}>
<Router history={history}>
<Route name="app" path="/" component={App}>
<IndexRoute name="app:home" component={Home} onEnter={requireAuth} />
<Route name="app:infos" path="information" component={ListPage} onEnter={requireAuth} />
<Route name="app:info" path="information/:id" component={InfoPage} onEnter={requireAuth} />
</Route>
</Router>
</Provider>,
document.getElementById('root'),
);