Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

createstore deprecated

// REDUCER - Update with dipatch and actions specifies
export default function storeReducer(state = initState, action: AnyAction){
  ...
  return state;
}

// configureStore replace createStore
export const store = configureStore({reducer: {storeReducer}});
 
PREVIOUS NEXT
Tagged: #createstore #deprecated
ADD COMMENT
Topic
Name
4+8 =