arbret/frontend/app/layout.tsx
2025-12-18 21:37:28 +01:00

8 lines
164 B
TypeScript

export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}