Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jurmy24
/
leLab
like
17
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
leLab
/
src
/
main.tsx
jurmy24
initial commit
9d3c32a
4 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
158 Bytes
import
{ createRoot }
from
'react-dom/client'
import
App
from
'./App.tsx'
import
'./index.css'
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);