Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NERDDISCO
/
LeRobot.js
like
3
Running
App
Files
Files
Community
ca45f6b
LeRobot.js
/
src
/
demo
/
main.tsx
NERDDISCO
feat: calibration in web
737c5f6
26 days ago
raw
Copy download link
history
blame
191 Bytes
import
React
from
"react"
;
import
ReactDOM
from
"react-dom/client"
;
import
{
App
}
from
"./App"
;
import
"./index.css"
;
ReactDOM
.
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);