CreatorCenter_OOIN/src/main.jsx

13 lines
314 B
React
Raw Normal View History

2025-05-09 07:03:19 +08:00
import { createRoot } from 'react-dom/client';
2025-05-09 10:18:49 +08:00
import { Provider } from 'react-redux';
import store from './store';
2025-05-15 10:42:39 +08:00
import './styles/index.scss';
2025-05-08 10:39:32 +08:00
import './index.css';
2025-05-09 07:03:19 +08:00
import App from './App.jsx';
2025-05-08 10:39:32 +08:00
2025-05-09 07:03:19 +08:00
createRoot(document.getElementById('root')).render(
2025-05-23 08:53:43 +08:00
<Provider store={store}>
<App />
</Provider>
2025-05-08 10:39:32 +08:00
);