Redux Toolkit使用時の注意

下記のエラーが出ることがおおい

Error: could not find react-redux context value; please ensure the component is wrapped in a <Provider>

 

対処については下記HP参照

reactjs - could not find react-redux context value; please ensure the component is wrapped in a Provider - Stack Overflow

 

すなわち、

App.jsだけで、その中のJSXを、Providerでラッピングして、storeプロパティを設定しても、App.jsにその効果がとどかないようです。

対処法としては、コンテナコンポーネントを作成し、そこにViewを記載し、

App.jsでは、それを子コンポーネントとして呼び出すようにすると、Providerでのstoreプロパティが効くようです。