2026-03-26 12:03:01 +00:00
|
|
|
import '@ant-design/v5-patch-for-react-19';
|
2026-01-19 11:03:08 +00:00
|
|
|
import { StrictMode } from 'react';
|
|
|
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
|
import { StyleProvider } from '@ant-design/cssinjs';
|
2026-03-26 06:55:12 +00:00
|
|
|
import { App as AntdApp } from 'antd';
|
2026-01-19 11:03:08 +00:00
|
|
|
import './index.css';
|
|
|
|
|
import App from './App.jsx';
|
|
|
|
|
|
|
|
|
|
createRoot(document.getElementById('root')).render(
|
|
|
|
|
<StrictMode>
|
|
|
|
|
<StyleProvider hashPriority="high">
|
2026-03-26 06:55:12 +00:00
|
|
|
<AntdApp>
|
|
|
|
|
<App />
|
|
|
|
|
</AntdApp>
|
2026-01-19 11:03:08 +00:00
|
|
|
</StyleProvider>
|
|
|
|
|
</StrictMode>,
|
2026-03-26 12:03:01 +00:00
|
|
|
);
|