I am trying to accomplish this
import {isAuthorized} from '../somewhere'
async componentDidMount() {
const authorized = await isAuthorized()
if(!authorized){
this.props.history.push('/login')
}
}
in react hooks, how can I achive this exact functionality, thanks