React에서 Redux toolkit을 활용하는 방법을 정리하고자 합니다. redux-toolkit 설치된 프로젝트를 생성하는 방법 Redux + Plain JS template npx create-react-app my-app --template redux Redux + TypeScript template npx create-react-app my-app --template redux-typescript App.js 에 Provider를 import하고 최상단 컴포넌트에 store를 저장해줍니다. // App.js import { Provider } from "react-redux"; import Counter from "./components/Counter"; import store from "./..