Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
danretegan committed Feb 25, 2024
1 parent b11b7d4 commit 74463aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import ReactDOM from 'react-dom/client';
import App from './components/App';
import './index.css';
import { Provider as ReduxProvider } from 'react-redux';
import store from './redux/store.js';
import persistor from './redux/store.js';

ReactDOM.createRoot(document.getElementById('root')).render(
<ReduxProvider store={store}>
<ReduxProvider store={persistor}>
<App />
</ReduxProvider>
);

0 comments on commit 74463aa

Please sign in to comment.