umami/src/app/(main)/reports/page.tsx

11 lines
192 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
import ReportsPage from './ReportsPage';
import { Metadata } from 'next';
2023-09-29 12:29:22 +00:00
2024-06-03 19:26:03 +00:00
export default function () {
return <ReportsPage />;
2023-09-29 12:29:22 +00:00
}
2024-02-06 07:59:33 +00:00
export const metadata: Metadata = {
2024-02-17 23:12:14 +00:00
title: 'Reports',
2023-09-29 12:29:22 +00:00
};