import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import 'bootstrap/dist/css/bootstrap.min.css'; import 'bootstrap/dist/js/bootstrap.bundle.min.js'; import App from './App.tsx'; import './index.css'; createRoot(document.getElementById('root')!).render( );