mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
import ReportsHeader from './ReportsHeader';
|
|
import ReportsDataTable from './ReportsDataTable';
|
|
|
|
export default function () {
|
|
return (
|
|
<>
|
|
<ReportsHeader />
|
|
<ReportsDataTable />
|
|
</>
|
|
);
|
|
}
|
|
export const metadata = {
|
|
title: 'Reports | umami',
|
|
};
|