This commit is contained in:
2026-07-09 19:44:17 +07:00
commit e158873231
17 changed files with 4514 additions and 0 deletions

10
src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import { Provider } from 'react-redux'
import store from './store/index.ts'
createRoot(document.getElementById('root')!).render(
<Provider store={store}>
<App />
</Provider>
)