Add React-Redux boilerplate

This commit is contained in:
2020-12-20 18:05:37 +05:30
parent c53529f8b4
commit a4a55afa70
19 changed files with 12165 additions and 0 deletions

8
src/app/store.js Normal file
View File

@@ -0,0 +1,8 @@
import { configureStore } from "@reduxjs/toolkit";
import counterReducer from "../features/counter/counterSlice";
export default configureStore({
reducer: {
counter: counterReducer,
},
});