feat: added redux

This commit is contained in:
Boris Cherepanov
2026-03-23 15:09:39 +03:00
parent 8f38e27eb0
commit f0e1bbc7f8
8 changed files with 360 additions and 5 deletions
+5 -1
View File
@@ -1,10 +1,14 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { Provider } from 'react-redux'
import { store } from './store'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<Provider store={store}>
<App />
</Provider>
</StrictMode>,
)