Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BBo09
/
comic_test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
comic_test
/
src
/
app
/
interface
/
login
/
index.tsx
BBo09
Upload 255 files
c511b81
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
156 Bytes
"use client"
import
dynamic
from
"next/dynamic"
;
export
const
Login
=
dynamic
(
() =>
import
(
"./login"
), {
// Make sure we turn SSR off
ssr
:
false
,
});