mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-02 04:49:32 +01:00
14 lines
347 B
JavaScript
14 lines
347 B
JavaScript
|
import AppLayout from 'components/layout/AppLayout';
|
||
|
import ReportsPage from 'components/pages/reports/ReportsPage';
|
||
|
import { useMessages } from 'hooks';
|
||
|
|
||
|
export default function () {
|
||
|
const { formatMessage, labels } = useMessages();
|
||
|
|
||
|
return (
|
||
|
<AppLayout title={formatMessage(labels.reports)}>
|
||
|
<ReportsPage />
|
||
|
</AppLayout>
|
||
|
);
|
||
|
}
|