10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
|
import "../css/index.css";
|
||
|
|
||
|
import MapManager from './MapManager.mjs';
|
||
|
|
||
|
window.addEventListener("load", (_event) => {
|
||
|
const map_manager = new MapManager();
|
||
|
map_manager.setup();
|
||
|
|
||
|
});
|