Browse Source

feat(reducers): export toDoReducer

Helder 6 năm trước cách đây
mục cha
commit
cd62d6476a
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      src/app/store/reducers/index.js

+ 6 - 0
src/app/store/reducers/index.js

@@ -0,0 +1,6 @@
+import { combineReducers } from 'redux'
+import toDoReducer from './toDoReducer'
+
+export default combineReducers({
+    toDoReducer
+})