React Redux Tutorials - 16 - Reducers

jh22j9·2020년 10월 14일
0

React Redux Tutorials

목록 보기
16/20

define the initial state a reducer function

src / redux / cake / cakeReducer.js

import {BUY_CAKE} from './cakeTypes';

const initialState = {
  numOfCakes: 10
};

const cakeReducer = (state = initialState, action) => {
  switch(action.type) {
    case BUY_CAKE: return {
      ...state,
      numOfCakes: state.numOfCakes - 1
    }
    default: return state
  }
};

export default cakeReducer

0개의 댓글

관련 채용 정보