diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-09 01:07:15 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-09 01:07:15 +0300 |
commit | 34ccc98a942098faefb5f4211b215ff9ccc7ad0e (patch) | |
tree | 7696ab4d7c8d9fb09c7e2575d482517f68824ae3 /frontend/index.jsx |
Начальный
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 />); |