Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Hanzo-Community
/
api-docs
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
api-docs
/
app
/
layout.tsx
Hanzo Dev
Create minimal working template
ebcd728
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
167 Bytes
export
default
function
RootLayout
(
{
children,
}: {
children: React.ReactNode
}
) {
return
(
<
html
lang
=
"en"
>
<
body
>
{children}
</
body
>
</
html
>
)
}