api-docs / app /layout.tsx
Hanzo Dev
Create minimal working template
ebcd728
raw
history blame contribute delete
167 Bytes
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}