11 lines
196 B
TypeScript
11 lines
196 B
TypeScript
import { Metadata } from 'next';
|
|
import { ProfilePage } from './ProfilePage';
|
|
|
|
export default function () {
|
|
return <ProfilePage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Profile',
|
|
};
|