mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 01:25:37 +01:00
Added reports section.
This commit is contained in:
parent
ad918c5bba
commit
a5700d4a25
36 changed files with 422 additions and 43 deletions
5
pages/reports/event-data/index.js
Normal file
5
pages/reports/event-data/index.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import EventDataReport from 'components/pages/reports/EventDataReport';
|
||||
|
||||
export default function Report() {
|
||||
return <EventDataReport />;
|
||||
}
|
||||
13
pages/reports/index.js
Normal file
13
pages/reports/index.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import AppLayout from 'components/layout/AppLayout';
|
||||
import ReportsList from 'components/pages/reports/ReportsList';
|
||||
import useMessages from 'hooks/useMessages';
|
||||
|
||||
export default function ReportsPage() {
|
||||
const { formatMessage, labels } = useMessages();
|
||||
|
||||
return (
|
||||
<AppLayout title={formatMessage(labels.reports)}>
|
||||
<ReportsList />
|
||||
</AppLayout>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue