summaryrefslogtreecommitdiff
path: root/frontend/index.jsx
blob: 1153d893684c50dc08ced023adee8dde96fa7e80 (plain) (blame)
1
2
3
4
5
6
7
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 />);