blob: 4b79b598f65f845c2c11380c69339b72c9bb7f68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import type { Metadata } from 'next';
import { DashboardPage } from './DashboardPage';
export default async function () {
return <DashboardPage />;
}
export const metadata: Metadata = {
title: 'Dashboard',
};
|