【发布时间】:2019-09-30 20:01:35
【问题描述】:
我正在关注TypeScript-React-Starter tutorial,并将一个组件包装到一个容器中,Hello.tsx。第 4 行是
import {connect, Dispatch} from 'react-redux';
并在 Dispatch 上抛出以下错误:
Module '"../../node_modules/@types/react-redux"' has no exported member 'Dispatch'.
如何导入 Dispatch?
我需要更新一些东西吗? npm install 没有帮助,即使在更新到最新的 npm 版本之后也是如此。
【问题讨论】:
标签: reactjs typescript npm redux react-redux