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