Skip to content

Commit

Permalink
Added store
Browse files Browse the repository at this point in the history
  • Loading branch information
Aayush259 committed Aug 5, 2024
1 parent bf111e9 commit b434319
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/store/store.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { configureStore } from '@reduxjs/toolkit';
import themeSlice from '../features/themeSlice.js';
import historySlice from '../features/historySlice.js';

const store = configureStore({
reducer: {
themeSlice,
historySlice,
},
});

export default store;

0 comments on commit b434319

Please sign in to comment.