arbret/frontend/app/layout.tsx

9 lines
164 B
TypeScript
Raw Normal View History

2025-12-18 21:37:28 +01:00
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}