반응형
redux
-
[Redux] redux createStore 취소선과 해결 방법📌 React 2022. 10. 18. 16:36
문제 리덕스를 사용하려고 하는데 createStore 에 취소선이 그어져있다. import { createStore } from "redux"; const store = createStore(rootReducer, composeWithDevTools); import { createStore } from "redux"; const store = createStore(rootReducer, composeWithDevTools); 원인 이유는 createStore 를 더이상 사용하지 않기 때문이라고 한다. 위 설명에 따르면) createStore를 대체하는 @reduxjs/toolkit 패키지의 configureStore 메소드를 사용하는 것이 좋다. Redux 툴킷은 스토어 설정, 리듀서, 데이터 가져오기 ..