Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
llmonitor
/
benchmarks
like
7
Build error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
a4ef64a
benchmarks
/
pages
/
_document.js
vincelwt
initial commit
4ffd659
unverified
over 1 year 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
>
)
}