Files
voyage/apps/public-web/app/layout.tsx
2026-01-24 19:40:20 +01:00

12 lines
289 B
TypeScript

import "./global.css";
import type { ReactNode } from "react";
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="de">
<body className="min-h-screen antialiased">
{children}
</body>
</html>
);
}