2025-08-05 12:57:18 -07:00
|
|
|
import Dashboard from './components/Dashboard.jsx'
|
2025-07-31 14:39:35 -07:00
|
|
|
import 'leaflet/dist/leaflet.css';
|
|
|
|
|
|
2025-07-21 13:01:16 -07:00
|
|
|
|
2025-07-08 11:16:51 -07:00
|
|
|
function App() {
|
|
|
|
|
return (
|
2025-07-23 11:01:25 -07:00
|
|
|
<Dashboard />
|
2025-07-08 11:16:51 -07:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-23 14:41:52 -07:00
|
|
|
export default App
|