Redux Toolkit (RTK) The official, opinionated, batteries-included toolset for efficient Redux development => Redux Toolkit은 Redux를 더 쉽게 사용하기 위해 만들어졌다. 1) 설치 # NPM $ npm install @reduxjs/toolkit # Yarn $ yarn add @reduxjs/toolkit 2) RTK method 1. createAction 기존 Redux에서 action을 정의하기 위해 action type 상수와 action creator 함수를 각각 선언해야 했지만 createAction은 이 두 선언을 하나로 결합해 준다. createAction은 action type을 단일 인..