Skip to content

Instantly share code, notes, and snippets.

@alexbeletsky
Created November 17, 2017 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexbeletsky/de963933e17f43f0bb101a6252415333 to your computer and use it in GitHub Desktop.
Save alexbeletsky/de963933e17f43f0bb101a6252415333 to your computer and use it in GitHub Desktop.
const routes = (
<Route path="">
<Route path="/signup" component={SignUp} />
<Route path="/signin" component={SignIn} />
// applied here..
<Route path="/welcome-on-board" component={checkBoarded(Welcome, { withValue: true, redirectTo: '/app/dashboard'}) } />
<Route path="/forgot-password" component={ForgotPassword} />
<Route path="/signout" component={SignOut} />
// .. and here
<Route path="/app" component={checkBoarded(requiresAuth(App), { withValue: false: redirectTo: '/welcome-on-board' })}>
<Route name="dashboard" path="dashboard" component={Dashboard} />
<Route name="profile" path="user-profile" component={UserProfile} />
</Route>
<Route path="/config" component={requiresAuth(Config)}>
<Route name="page" path="page" component={PageConfig} />
</Route>
<Route path="*" component={FourOFour} status={404} />
</Route>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment