mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
import { useEffect } from 'react';
|
|
|
|
export default function LogoutPage() {
|
|
useEffect(() => {
|
|
fetch('/api/auth/logout').then(() => (window.location.href = '/login'));
|
|
}, []);
|
|
|
|
return null;
|
|
}
|