DoItJust --> initial commit
This commit is contained in:
14
React/DoItJust/src/main.tsx
Normal file
14
React/DoItJust/src/main.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import {StrictMode} from 'react';
|
||||
import {createRoot} from 'react-dom/client';
|
||||
import {Provider} from 'react-redux';
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
import {store} from './store';
|
||||
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
<StrictMode>
|
||||
<Provider store={store}>
|
||||
<App />
|
||||
</Provider>
|
||||
</StrictMode>
|
||||
);
|
||||
Reference in New Issue
Block a user