본문 바로가기

What I Learnd/TIL

TIL - Redux Ducks Pattern 정리!

1. Reduxer 함수를 export default 한다.

2. Action creator 함수들을 export 한다.

3. Action type은 app/reducer/ACTION_TYPE 형태로 작성한다.

그래서 모듈 파일에서는 1. Action Type, 2. Action Creator, 3. Reducer 가 모두 존재하도록 하는 작성방식!