mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 20:15:41 +01:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
import { Metadata } from 'next';
|
|
import { DashboardPage } from './DashboardPage';
|
|
|
|
export default async function () {
|
|
return <DashboardPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Dashboard',
|
|
};
|