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

15 lines
267 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import ReportsHeader from './ReportsHeader';
2023-10-08 01:55:14 +00:00
import ReportsDataTable from './ReportsDataTable';
2023-09-29 12:29:22 +00:00
2023-11-12 04:45:09 +00:00
export default function () {
2023-09-29 12:29:22 +00:00
return (
<>
<ReportsHeader />
2023-10-08 01:55:14 +00:00
<ReportsDataTable />
2023-09-29 12:29:22 +00:00
</>
);
}
export const metadata = {
title: 'Reports | umami',
};