Skip to content

Instantly share code, notes, and snippets.

@nurrony
Created September 29, 2016 14:23
Show Gist options
  • Select an option

  • Save nurrony/3614823c628420a8231997d818a78ac0 to your computer and use it in GitHub Desktop.

Select an option

Save nurrony/3614823c628420a8231997d818a78ac0 to your computer and use it in GitHub Desktop.
React Starter Kit
export const createRoutes = (store) => ({
path: '/',
component: BaseLayout,
childRoutes: [
{
component: CoreLayout,
childRoutes: [
CounterRoute(store)
]
},
{
component: AuthLayout,
childRoutes: [
AuthRoute(store)
]
}]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment