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 />)
})
5582

被折叠的 条评论
为什么被折叠?



