我有新的反应并使用bootstap react table 2并在添加分页属性时收到以下错误。
未捕获错误:t.render():必须返回有效的React元素(或null)。您可能已经返回了undefined,数组或其他一些无效对象。
有人可以帮忙吗?
以下是我的代码
class Users extends Component {
constructor(){
super();
this.state={
users:[],
options:{},
};
}
componentDidMount(){
//code...
}
render() {
<div className="animated fadeIn">
return (
<BootstrapTable keyField="_id" data={ this.state.users } columns={ columns } pagination={ paginationFactory() } />
);
</div>
}
}