This commit is contained in:
2025-09-17 10:30:20 +07:00
commit a56801f296
13 changed files with 3978 additions and 0 deletions

12
src/main.jsx Normal file
View File

@@ -0,0 +1,12 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
import 'antd/dist/reset.css'; // Ant Design base styles
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)