在Tab组件中使用AntD图标应该具有prop或component prop类型错误

时间:2019-11-09 05:34:42

标签: reactjs antd

我的应用程序出现此错误

Warning: [antd: Icon] Should have `type` prop or `component` prop or `children`.

我在Tab组件内使用图标 这是我的代码sandbox

1 个答案:

答案 0 :(得分:1)

问题出在“ icon:“””

const tabPanes = [
    {
      key: "1",
      title: "All",
      icon: "",
      content: (
        <DataTable
          dataSource={isAll}
          columns={columns}
          loading={state.loading}
          pagination={state.pagination}
          onChange={handleTableChange}
        />
      ),
      count: 12
    },