mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-21 11:20:17 -04:00
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import { Redirect } from 'react-router';
|
|
|
|
export default function Logout() {
|
|
localStorage.removeItem('session_token');
|
|
|
|
return <Redirect to="/"></Redirect>;
|
|
}
|