Skip to content

Instantly share code, notes, and snippets.

@mchelen
Created October 29, 2018 20:06
Show Gist options
  • Save mchelen/046197b31a1766213201e0e8b837ee53 to your computer and use it in GitHub Desktop.
Save mchelen/046197b31a1766213201e0e8b837ee53 to your computer and use it in GitHub Desktop.
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