deepsite-ai-coding / layout.tsx
likhonsheikh's picture
Upload app directory - minimal build
1c01f80 verified
raw
history blame contribute delete
190 Bytes
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body style={{ margin: 0 }}>{children}</body>
</html>
);
}