import React from 'react'
import { createRoot } from 'react-dom/client'
import store from './redux/store'
import App from './App.jsx'
const root = createRoot(document.getElementById('root'))
root.render(<App />)
store.subscribe(() => {
root.render(<App />)
})