umami/pages/reports/insights.js

14 lines
406 B
JavaScript
Raw Normal View History

2023-05-20 18:02:08 +02:00
import AppLayout from 'components/layout/AppLayout';
import InsightsReport from 'components/pages/reports/insights/InsightsReport';
2023-05-20 18:02:08 +02:00
import { useMessages } from 'hooks';
2023-07-10 09:33:30 +02:00
export default function () {
2023-05-20 18:02:08 +02:00
const { formatMessage, labels } = useMessages();
return (
<AppLayout title={`${formatMessage(labels.insights)} - ${formatMessage(labels.reports)}`}>
<InsightsReport />
2023-05-20 18:02:08 +02:00
</AppLayout>
);
}