/* eslint-disable filename-rules/match */ import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import { BrowserRouter } from 'react-router-dom'; import App from './app'; const container = document.getElementById('root'); if (!container) { throw new Error('No root container found'); } const root = createRoot(container); root.render( );