我正在尝试将我的react-native项目迁移到Typescript,并且只是逐模块移动以尝试解决所有错误消息,但是我似乎无法理解这一含义:“找不到名称'mapStateToProps'我怀疑这与@ type / react-redux库有关,但我不确定。
mapStateToProps = (state) => {
return {
playing: state.toggle.playing,
activeFile: state.activeFile,
title: state.activeFile && state.units.files[state.activeFile].title
};
};
答案 0 :(得分:3)
这仅仅是因为您在mapStateToProps之前忘记了const
(或let
)关键字,因此警告您正在尝试引用不存在的内容。
const mapStateToProps = (state) => ...