我的代码是:
import React, { Component } from 'react';
import { Card} from './Card';
import { Checkbox } from 'react-icheck';
class User extends Component {
render() {
return (
<Card>
<Checkbox
checkboxClass="icheckbox_square-blue"
increaseArea="20%"
label="Do you want to receive notification ?"
/>
</Card>)
}
}
export default User;
错误:预期组件类,得到[object Object]。 我不知道为什么我收到Checkbox Component的错误。
版本:
"icheck": "^1.0.2",
"react": "16.0.0-alpha.12",
"react-icheck": "^0.3.8",
"react-native": "0.47.1",
谁能说我做错了?
答案 0 :(得分:0)
谁能说我做错了?
您正尝试在react-native
应用程序中使用基于DOM的组件。
我不认为,我应该解释差异