Возможно ли создать простые маршруты в react-router
v4?Пример (версия v3):
const routes = {
path: '/',
indexRoute: {onEnter: (nextState, replace) => replace('/calendar')},
childRoutes: [
{path: '/calendar', component: CalendarContainer},
{path: '/booking/:id', component: BookingContainer}
]
};