Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nimzuk
/
clodes
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
clodes
/
frontend
/
src
/
main.jsx
nimzuk
CI: sync from GitHub
c7bb297
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
163 Bytes
import
React
from
'react'
import
{ createRoot }
from
'react-dom/client'
import
App
from
'./ui/App.jsx'
createRoot
(
document
.
getElementById
(
'root'
)).
render
(
<
App
/>
)