Я использовал переменную состояния в redux и изменил ее после входа в систему.как я могу использовать это, чтобы изменить, если пользователь вошел в систему или нет?
Когда я обновляю страницу, она перенаправляет на страницу входа.
if(authError === "") return <Redirect to='/login/' />
return (
<div>
<Header />
<Router history={history}>
<Switch>
<Route exact path="/" component={Home} />
<Route path="/contactus" component={ContactUs} />
<Route path="/jobsnearyou" component={JobsNearYou} />
<Route path="/CandidateChat" component={CandidateChat} />
<Route path="/myprofile" component={MyProfile} />
<Route path="/candidateprofile" component={CandidateProfile} />
<Route path="/employerprofile" component={EmployerProfile} />
</Switch>
</Router>
<Footer />
</div>
);
i change "authError = null"если залогинен