Upload files to "/"

This commit is contained in:
2026-06-06 12:14:35 +00:00
parent 1a9beae738
commit 092f11bd9f
5 changed files with 1103 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './index.css'
// Add this line right here!
import 'leaflet/dist/leaflet.css'
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)