import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import { App } from './App' import './index.css' const wurzel = document.getElementById('wurzel') if (!wurzel) throw new Error('Der Aufhängepunkt #wurzel fehlt in index.html') createRoot(wurzel).render( , )