Initial commit WebGIS

This commit is contained in:
2026-06-09 19:45:18 +07:00
commit 2d8917af26
27 changed files with 5807 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)