Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzostvs
/
deepsite
like
16.1k
Running
App
Files
Files
Community
540
Fetching metadata from the HF Docker repository...
refs/pr/515
deepsite
/
main.tsx
Ivano97
Upload 17 files
f19c267
verified
about 1 month ago
raw
Copy download link
history
blame
162 Bytes
import
React
from
'react'
;
import
{ createRoot }
from
'react-dom/client'
;
import
App
from
'./App'
;
createRoot
(
document
.
getElementById
(
'root'
)!).
render
(
<
App
/>
);