Initialize project using Create React App

This commit is contained in:
2020-03-30 11:44:45 +05:30
commit 1a92d5120f
22 changed files with 11445 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { configureStore } from '@reduxjs/toolkit';
import counterReducer from '../features/counter/counterSlice';
export default configureStore({
reducer: {
counter: counterReducer,
},
});