코드를 다 수정했으면 sampleSaga를 루트 사가에 등록하세요.

    modules/index.js

    import { combineReducers } from 'redux';
    import { all } from 'redux-saga/effects';
    import counter, { counterSaga } from './counter';
    import sample, { sampleSaga } from './sample';
    import loading from './loading';
    
    const rootReducer = combineReducers({
      counter,
      sample,
      loading
    });
    
    export function* rootSaga() {
      // all 함수는 여러 사가를 합쳐 주는 역할을 합니다.
      yield all([counterSaga(), sampleSaga()]);
    }
    
    export default rootReducer;

    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.