LeRobot.js / src /demo /main.tsx
NERDDISCO's picture
feat: calibration in web
737c5f6
raw
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 />);