mirror of
https://github.com/kremalicious/umami.git
synced 2025-01-09 13:42:26 +01:00
14 lines
366 B
JavaScript
14 lines
366 B
JavaScript
|
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>
|
||
|
);
|
||
|
}
|