매일매일
Redux Thunk 미들웨어 사용해보기
React 2023. 4. 11. 23:47

1. Thunk란? 리덕스의 액션에서 비동기 처리를 할 수 있게 해준다. 2. 사용법 리덕스 설치 및 thuck 설치 npm install @reduxjs/toolkit react-redux npm install redux-thunk store에 추가 해주기 import { applyMiddleware, legacy_createStore as createStore } from 'redux'; import { reducer } from '../Reducers'; import ReduxThunk from 'redux-thunk'; const store = createStore(reducer, applyMiddleware(ReduxThunk)); export default store; thunk를 사용하면 액..