Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 46910e5

Browse files
committed
Removed redux-form
1 parent 4950766 commit 46910e5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/store/reducers.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import { combineReducers } from 'redux'
22
import { routerReducer as router } from 'react-router-redux'
3-
import { reducer as formReducer } from 'redux-form'
43

54
export const reducers = (asyncReducers) => {
65
return combineReducers({
76
// Add sync reducers here
87
router,
9-
...asyncReducers,
10-
form: formReducer
8+
...asyncReducers
119
})
1210
}
1311

0 commit comments

Comments
 (0)