mirror of
https://github.com/lemeow125/EquipmentTracker-Frontend.git
synced 2024-11-17 06:09:25 +08:00
5 lines
164 B
TypeScript
5 lines
164 B
TypeScript
import ReactDOM from "react-dom/client";
|
|
import App from "./App.tsx";
|
|
import "./index.css";
|
|
|
|
ReactDOM.createRoot(document.getElementById("root")!).render(<App />);
|