본문 바로가기
오류노트

[react-redux] Error: You must pass a component to the function returned by connect. Instead received {}

by 어컴띵 2020. 11. 10.

react-redux 에서 connect 함수 사용시 제대로 코딩하지 않아서 나는 오류

 

 

connect(mapStateToProps, mapDispatchToProps, OptionComponent)

 

이렇게 코딩을 하니 다음과 같은 오류발생

Error: You must pass a component to the function returned by connect. Instead received {}

 

Component를 같이 넘겨줘서 그렇다. 다음과 같이 분리해서 넘겨줘야 한다. 결국은 오타실수!!

제대로 쓰는 방식은 다음과 같다.

connect(mapStateToProps, mapDispatchToProps)(OptionComponent)