profil-next/app/layout.tsx
2022-11-21 10:42:30 +01:00

12 lines
184 B
TypeScript

export default function RootLayout({
children
}: {
children: React.ReactNode
}): JSX.Element {
return (
<html>
<head />
<body>{children}</body>
</html>
)
}