8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
|
|
import type { Metadata } from 'next'
|
||
|
|
|
||
|
|
export const metadata: Metadata = { title: 'Mentor Dashboard' }
|
||
|
|
|
||
|
|
export default function MentorPageLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return children
|
||
|
|
}
|