11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
import type { Metadata } from 'next';
|
|
import { DashboardPage } from './DashboardPage';
|
|
|
|
export default async function () {
|
|
return <DashboardPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Dashboard',
|
|
};
|