Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
severo
/
followgraph
like
33
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
ccdb4af
followgraph
/
pages
/
_document.tsx
severo
HF staff
copy files
b369d17
8 months ago
raw
Copy download link
history
blame
Safe
231 Bytes
import
{
Html
,
Head
,
Main
,
NextScript
}
from
'next/document'
export
default
function
Document
(
) {
return
(
<
Html
lang
=
"en"
>
<
Head
/>
<
body
>
<
Main
/>
<
NextScript
/>
</
body
>
</
Html
>
)
}