Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NERDDISCO
/
LeRobot.js
like
3
Running
App
Files
Files
Community
130ae50
LeRobot.js
/
src
/
demo
/
main.tsx
NERDDISCO
feat(web): update demo to use latest lib
2aa0afa
17 days ago
raw
Copy download link
history
blame
Safe
164 Bytes
import
ReactDOM
from
"react-dom/client"
;
import
{
App
}
from
"./App"
;
import
"./index.css"
;
ReactDOM
.
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);