LeRobot.js / src /demo /main.tsx
NERDDISCO's picture
feat: added react / tailwind ui
0d9f1af
raw
history blame
240 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import { App } from "./App";
import "./index.css";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>
);