import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import './index.css' import App from './App.jsx' //import './Style/light-theme.css'; // Подключаем светлую тему по умолчанию //import './Style/dark-theme.css'; // Подключаем темную тему createRoot(document.getElementById('root')).render( , )