sw-fe/src/App.jsx

17 lines
355 B
JavaScript

import React from "react";
import TopBar from "./components/Layout/TopBar";
import MapView from "./components/Map/MapView";
export default function App() {
return (
<div className="app-root">
<TopBar />
<div className="main-shell">
<div className="map-shell">
<MapView />
</div>
</div>
</div>
);
}