Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
lerobot
/
LeLab
like
13
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
LeLab
/
src
/
main.tsx
GitHub CI
Sync from leLab @ 39fcfee669f0b98e7a1fc4dde23025ea8cc7e5ce
df3ef41
4 days ago
Raw
Download with hf CLI
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
/>
);