Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save evaldosantos/58df0df48d8c14b5b13059d3075b2216 to your computer and use it in GitHub Desktop.
Save evaldosantos/58df0df48d8c14b5b13059d3075b2216 to your computer and use it in GitHub Desktop.
const AuthenticatedHOC = Component => ({ isLoggedIn, ...otherProps }) =>
isLoggedIn ? <Component {...otherProps}> : <Redirect to="/">
// Component Dashboard
// ...
//
<Router>
<Route path="/dashboard" component={AuthenticatedHOC(Dashboard)} />
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment