mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
15 lines
263 B
TypeScript
15 lines
263 B
TypeScript
|
|
import ReportsHeader from './ReportsHeader';
|
||
|
|
import ReportsList from './ReportsList';
|
||
|
|
|
||
|
|
export default function ReportsPage() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<ReportsHeader />
|
||
|
|
<ReportsList />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
export const metadata = {
|
||
|
|
title: 'Reports | umami',
|
||
|
|
};
|