mirror of
https://github.com/kremalicious/umami.git
synced 2025-01-09 13:42:26 +01:00
14 lines
406 B
JavaScript
14 lines
406 B
JavaScript
import AppLayout from 'components/layout/AppLayout';
|
|
import InsightsReport from 'components/pages/reports/insights/InsightsReport';
|
|
import { useMessages } from 'hooks';
|
|
|
|
export default function () {
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
return (
|
|
<AppLayout title={`${formatMessage(labels.insights)} - ${formatMessage(labels.reports)}`}>
|
|
<InsightsReport />
|
|
</AppLayout>
|
|
);
|
|
}
|