NERDDISCO's picture
refactor: restructure demo to examples/robot-control-web
ea49c9f
raw
history blame
164 Bytes
import ReactDOM from "react-dom/client";
import { App } from "./App";
import "./index.css";
ReactDOM.createRoot(document.getElementById("root")!).render(<App />);