mirror of
https://github.com/umami-software/umami.git
synced 2026-02-20 04:25:39 +01:00
17 lines
477 B
TypeScript
17 lines
477 B
TypeScript
'use client';
|
|
import { Column } from '@umami/react-zen';
|
|
import { PageBody } from '@/components/common/PageBody';
|
|
import { PageHeader } from '@/components/common/PageHeader';
|
|
import { useMessages } from '@/components/hooks';
|
|
|
|
export function DashboardPage() {
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
return (
|
|
<PageBody>
|
|
<Column margin="2">
|
|
<PageHeader title={formatMessage(labels.dashboard)}></PageHeader>
|
|
</Column>
|
|
</PageBody>
|
|
);
|
|
}
|