Created
February 3, 2019 14:39
-
-
Save carlrip/ad18067ffeb3d3f6f4a12d36b7b53d0e to your computer and use it in GitHub Desktop.
React Redux Store with TypeScript
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
| export function configureStore(): Store<IAppState> { | |
| const store = createStore(rootReducer, undefined, applyMiddleware(thunk)); | |
| return store; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment