mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
import { useEffect } from 'react';
|
|
|
|
export default function LogoutPage() {
|
|
useEffect(() => {
|
|
fetch('/api/auth/logout').then(() => (window.location.href = '/login'));
|
|
}, []);
|
|
|
|
return null;
|
|
}
|