import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import 'leaflet/dist/leaflet.css'; import App from './App'; import { registerSW } from './sw-register'; registerSW(); const rootElement = document.getElementById('root'); if (!rootElement) { throw new Error("Could not find root element to mount to"); } import { HelmetProvider } from 'react-helmet-async'; const root = ReactDOM.createRoot(rootElement); root.render( );