export default function RootLayout()

in frontend/src/app/layout.tsx [13:23]


export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body className="antialiased h-full">{children}</body>
    </html>
  );
}