mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 19:01:08 +00:00
13 lines
295 B
TypeScript
13 lines
295 B
TypeScript
import React from "react";
|
|
import reactDom from "react-dom/client";
|
|
import MapViewComponent from "./MapViewComponent";
|
|
|
|
const root = document.getElementById("root");
|
|
if (root) {
|
|
reactDom.createRoot(root).render(
|
|
<React.StrictMode>
|
|
<MapViewComponent />
|
|
</React.StrictMode>
|
|
);
|
|
}
|