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