Created
January 12, 2018 07:31
-
-
Save devmobasa/12a58cec7343d0e3ad48be78e100dfab to your computer and use it in GitHub Desktop.
Using React Router v4 with create-react-app - https://codingblast.com/react-router-create-react-app/
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
| import { Route, Redirect } from 'react-router' | |
| <Route exact path="/" render={() => ( | |
| loggedIn ? ( | |
| <Redirect to="/admin"/> | |
| ) : ( | |
| <Home/> | |
| ) | |
| )}/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment