import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import { App } from '@/app/App' import '@/index.css' const rootElement = document.getElementById('root') if (!rootElement) { throw new Error('Элемент #root не найден в index.html') } createRoot(rootElement).render( , )