protecting route with react router config code example
Example 1: react-router-config private routes
import React from 'react'
import { Switch } from 'react-router-dom'
import renderRoutes from '../renderRoutes'
import routes from '../routes3'
const authed = false
const authPath = '/login'
const Main = () => (
<main>
<Switch>
{renderRoutes(routes, authed, authPath)}
</Switch>
</main>
)
export default Main
Example 2: react-router-config private routes
import React from 'react'
class Login extends React.Component {
render() {
const { from } = this.props.location.state || { from: {pathname: '/' } }
return (
<div>
<p>You must log in to view this page at {from.pathname} </p>
<button onClick={this.login}>Log in </button>
</div>
)
}
}
export default Login