我正在尝试使用react-native和redux创建一个计数器,但我收到错误 -c, --comment COMMENT
Any text string. It is generally a short description of the login, and is currently used as the field for the user's full name.
。
这是我的Expected a component class, got [object Object]
index.android.js
我的代码可以找到here。
找到关于这个说法的答案,可能是因为班级名称没有大写,但事实并非如此。
有人有任何想法吗?
答案 0 :(得分:1)
查看Counter.js
内部。您已使用React Native中不存在的div
标记。
从React Native导入View
标记并使用它。
import {View} from 'react-native'
const Counter = ({ value }) => (
<View>{value}</View>
);