imetting_frontend/src/main.jsx

13 lines
349 B
React
Raw Normal View History

2025-09-16 09:00:09 +00:00
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { StyleProvider } from '@ant-design/cssinjs';
import './index.css';
import App from './App.jsx';
2025-08-05 01:44:28 +00:00
createRoot(document.getElementById('root')).render(
<StrictMode>
2025-09-16 09:00:09 +00:00
<StyleProvider hashPriority="high">
<App />
</StyleProvider>
2025-08-05 01:44:28 +00:00
</StrictMode>,
2025-09-16 09:00:09 +00:00
);