deepsite-ai-coding / app /layout.tsx
likhonsheikh's picture
Upload app/layout.tsx with huggingface_hub
85487df 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>
);
}