import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import App from './App'; import './index.css'; // No BrowserRouter: this shell is served at /admin and nowhere else, so there is nothing to route. createRoot(document.getElementById('root')!).render( , );