21 lines
571 B
TypeScript
21 lines
571 B
TypeScript
import React from 'react'
|
|
import ReactDOM from 'react-dom/client'
|
|
import { Provider } from 'react-redux'
|
|
import { HashRouter } from 'react-router-dom'
|
|
import { ToastContainer } from 'react-toastify'
|
|
import 'react-toastify/dist/ReactToastify.css'
|
|
import App from './App.tsx'
|
|
import './index.css'
|
|
import { store } from './store/index.ts'
|
|
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<React.StrictMode>
|
|
<Provider store={store}>
|
|
<HashRouter>
|
|
<App />
|
|
<ToastContainer />
|
|
</HashRouter>
|
|
</Provider>
|
|
</React.StrictMode>
|
|
)
|