mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 00:27:11 +01:00
New reports screens.
This commit is contained in:
parent
293e84acab
commit
2b13002f1b
9 changed files with 101 additions and 14 deletions
13
pages/reports/create.js
Normal file
13
pages/reports/create.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import AppLayout from 'components/layout/AppLayout';
|
||||
import ReportTemplates from 'components/pages/reports/ReportTemplates';
|
||||
import { useMessages } from 'hooks';
|
||||
|
||||
export default function ReportsPage() {
|
||||
const { formatMessage, labels } = useMessages();
|
||||
|
||||
return (
|
||||
<AppLayout title={formatMessage(labels.reports)}>
|
||||
<ReportTemplates />
|
||||
</AppLayout>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue