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

12 lines
172 B
TypeScript

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