Answers for "__redux_devtools_extension_compose__ redux toolkit"

0

__redux_devtools_extension_compose__ typescript

declare global {
    interface Window {
      __REDUX_DEVTOOLS_EXTENSION_COMPOSE__?: typeof compose;
    }
}

const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
Posted by: Guest on October-08-2021
0

__REDUX_DEVTOOLS_EXTENSION_COMPOSE__

const store = createStore(rootReducers, composeEnhancers());
Posted by: Guest on January-30-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language