인프런 커뮤니티 질문&답변

Dayong Lee님의 프로필 이미지
Dayong Lee

작성한 질문수

React로 NodeBird SNS 만들기

3-4. redux와 react 연결하기

왜 next-redux-wrapper를 사용해야하나요??

작성

·

184

0

const middlewares = [];
const enhancer = compose(
  applyMiddleware(...middlewares),
  typeof window !== "undefined" &&
    window.__REDUX_DEVTOOLS_EXTENSION__ !== "undefined"
    ? window.__REDUX_DEVTOOLS_EXTENSION__()
    : f => f
);
const store = createStore(rootReducer, initialState, enhancer);

const App = ({ Component }) => {
  return () })

이런식으로 작성해도 정상적으로 작동하던데 해당 라이브러리를 사용하는 이유가 궁금합니다! 그리고 해당 라이브러리가 하는일을 알고싶네요!

답변 1

0

제로초(조현영)님의 프로필 이미지
제로초(조현영)
지식공유자

_app.js의 this.props에 store을 추가해줍니다.

Dayong Lee님의 프로필 이미지
Dayong Lee

작성한 질문수

질문하기