Created
April 26, 2016 15:19
-
-
Save cyr-l/bc5abd498376f071fda2f0fd6de06300 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 4. Setup your app. | |
import { Provider } from 'react-redux'; // <-- and not 'react-redux-router' | |
// 5. Setup your store. | |
import { | |
createStore, | |
combineReducers, | |
applyMiddleware | |
} from 'redux'; | |
import { | |
modelReducer, | |
formReducer | |
} from 'react-redux-form'; | |
import thunk from 'redux-thunk'; // <-- missing | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment