Add app/layout.tsx

This commit is contained in:
kleap-admin 2026-01-15 11:40:29 +00:00
parent 2bf1b35710
commit bc58179df1
1 changed files with 4 additions and 0 deletions

4
app/layout.tsx Normal file
View File

@ -0,0 +1,4 @@
export const metadata = { title: 'test-1768477227183' }
export default function RootLayout({ children }: { children: React.ReactNode }) {
return <html><body>{children}</body></html>
}