내일 배움 캠프 4기 TIL(22.12.09)

baesee·2022년 12월 12일
0

내일배움캠프

목록 보기
36/75

Redux

// src/modules/counter.js

// 초기 상태값
const initialState = {
  number: 0,
};

// 리듀서
const counter = (state = initialState, action) => {
  switch (action.type) {
    default:
      return state;
  }
};

// 모듈파일에서는 리듀서를 export default 한다.
export default counter;

redux의 흐름 이해하기

0개의 댓글