React

【Redux】(0 , _reactRedux.connect) is not a function

(0 , _reactRedux.connect) is not a function

ReactNativeでReduxを使用して開発していたら上記のエラーが発生。

原因

importしているreduxモジュールに不備があった事に起因しています。

import { connect } from 'redux';

上記を使用していたが、どうやらReactnativeではこれではないらしい。

対応策

importするモジュールを変更する必要があります。
使用したモジュール

import { connect } from 'react-redux';