diff options
Diffstat (limited to 'frontend/index.jsx')
-rw-r--r-- | frontend/index.jsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/index.jsx b/frontend/index.jsx new file mode 100644 index 0000000..1153d89 --- /dev/null +++ b/frontend/index.jsx @@ -0,0 +1,8 @@ +import React from "react"; +import { createRoot } from "react-dom/client"; +import App from "./app"; + +import "./app.css"; +import "maplibre-gl/dist/maplibre-gl.css"; + +createRoot(document.getElementById("app")).render(<App />); |