ft_transcendence/containers/react/src/components/Profile/Logout.tsx
2023-06-18 13:25:06 +02:00

15 lines
328 B
TypeScript

function Logout(){
localStorage.clear();
const path = 'http://' + process.env.REACT_APP_BASE_URL + '/';
// history(path, { replace: true });
// window.location.replace(path);
// window.history.pushState({}, '', path);
window.history.pushState({}, null, path);
window.location.reload(false);
}
export default Logout;