Created
September 29, 2016 14:23
-
-
Save nurrony/3614823c628420a8231997d818a78ac0 to your computer and use it in GitHub Desktop.
React Starter Kit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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