无法将react-native与redux连接起来

时间:2017-06-04 06:39:24

标签: react-native redux

我正在尝试使用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

找到关于这个说法的答案,可能是因为班级名称没有大写,但事实并非如此。

有人有任何想法吗?

1 个答案:

答案 0 :(得分:1)

查看Counter.js内部。您已使用React Native中不存在的div标记。

从React Native导入View标记并使用它。

import {View} from 'react-native'

const Counter = ({ value }) => (
  <View>{value}</View>
);