Explorar el Código

feat(reducers): export toDoReducer

Helder hace 6 años
padre
commit
cd62d6476a
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  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
+})