We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
미션 1. redux-toolkit 활용 UMC PlayList 제작 미션 2. Modal Slice 활용하여, 모달 기능 추가
미션 1. redux-toolkit 활용 UMC PlayList 제작
styled-components
redux-toolkit
Provider
configureStore
cartSlice
음반수량 증가
action
increase action 기능 구현
음반수량 감소
decrease action 기능 구현
1보다 작아진다면, 장바구니 목록에서 자동으로 제거
removeItem action 기능 구현
장바구니 초기화
clearCart action 기능 구현
calculateTotals action 기능 구현
미션 2. Modal Slice 활용하여, 모달 기능 추가
clearCart Action
useState를 사용하지 않고, reducer
The text was updated successfully, but these errors were encountered:
heeone1
Successfully merging a pull request may close this issue.
🛠 Mission
미션 1. redux-toolkit 활용 UMC PlayList 제작
미션 2. Modal Slice 활용하여, 모달 기능 추가
📝 To-do
미션 1. redux-toolkit 활용 UMC PlayList 제작
styled-components
를 활용해서 만들어주세요.redux-toolkit
을 활용해서 만들어주세요.redux-toolkit
를 사용하기 위해서Provider
를 연결해주세요. (공식문서 참고)configureStore
를 활용해, 중앙 저장소를 만들어주세요!cartSlice
를 만들어주고, 중앙 저장소에 연결해주세요!음반수량 증가
시 해당하는 음반의 수량이 증가되게action
함수를 만들어주세요. (increase action 기능 구현
)음반수량 감소
시 해당하는 음반의 수량이 증가되게action
함수를 만들어주세요. (decrease action 기능 구현
)1보다 작아진다면, 장바구니 목록에서 자동으로 제거
되게 만들어주세요. (removeItem action 기능 구현
)장바구니 초기화
버튼을 누르면 선택한 음반들이 다 제거되도록 위의 영상처럼 화면을 구성해 주세요! (clearCart action 기능 구현
)calculateTotals action 기능 구현
)미션 2. Modal Slice 활용하여, 모달 기능 추가
clearCart Action
을 활용했는가?useState를 사용하지 않고, reducer
를 통해 만들어보세요! 제일 중요합니다!!)🔍 접근 방법
The text was updated successfully, but these errors were encountered: