1import './utils/ErrorReporting';
2import ReactDOM from 'react-dom/client';
3
4import './index.css';
5import 'antd/dist/antd.css';
6import App from './App';
7
8const root = ReactDOM.createRoot(document.getElementById('root')!);
9root.render(<App />);