search / app /layout.tsx
Hanzo Dev
Fix changelog with minimal template
c4d37f9
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}