Vezolu Vero
Initial commit with live data and Docker config
743409d
Raw
History Blame Contribute Delete
183 Bytes
import { createRoot } from "react-dom/client";
import App from "./app/App.tsx";
import "./styles/index.css";
createRoot(document.getElementById("root")!).render(<App />);