umami/src/app/logout/page.tsx

11 lines
184 B
TypeScript
Raw Normal View History

2023-09-30 02:18:44 +00:00
import Logout from './Logout';
2023-11-12 04:45:09 +00:00
import { Metadata } from 'next';
2020-07-25 23:31:07 +00:00
2023-09-30 02:18:44 +00:00
export default function () {
return <Logout />;
2020-07-25 23:31:07 +00:00
}
2023-11-12 04:45:09 +00:00
export const metadata: Metadata = {
title: 'Logout | umami',
};