Created
October 29, 2018 20:06
-
-
Save mchelen/046197b31a1766213201e0e8b837ee53 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
const composeEnhancers = (window as any).__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose; | |
export const store = createStore<StoreState, FilterAction, any, any>( | |
rootReducer, | |
{ | |
query: initialQueryState, | |
ui: { | |
hello: "world" | |
}, | |
config: { | |
foo: "bar" | |
} | |
}, | |
composeEnhancers( | |
applyMiddleware(thunkMiddleware) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment