简单的登陆检测


export default function useCheckLogin(){
const [loginstate,setLoginState]=useState(false);
    let username=localStorage.getItem('user');
    if(username!=null||username!=''){
        setLoginState(true)
    }
const history=useHistory();
if(!loginstate){
    history.push("/");
}
}

 

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/269307.html

(0)
上一篇 2022年6月21日
下一篇 2022年6月21日

相关推荐

发表回复

登录后才能评论