Leeflour's picture
Upload 41 files
2a7394b verified
raw
history blame contribute delete
273 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import '@ant-design/v5-patch-for-react-19'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)