mirror of
https://github.com/Funkoala14/CreatorCenter_OOIN.git
synced 2025-06-07 22:58:14 +08:00
13 lines
314 B
JavaScript
13 lines
314 B
JavaScript
import { createRoot } from 'react-dom/client';
|
|
import { Provider } from 'react-redux';
|
|
import store from './store';
|
|
import './styles/index.scss';
|
|
import './index.css';
|
|
import App from './App.jsx';
|
|
|
|
createRoot(document.getElementById('root')).render(
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>
|
|
);
|