这是我的代码方案
const components = {
body: {
row: EditableFormRow,
cell: EditableCell,
},
};
我在下面的另一个组件中使用组件。
<CustomTable
columns={updatedcolumns}
dataSource={dataSource}
components={components}
rowClassName={() => 'editable-row'}
bordered
size="middle"
pagination={false}
// scroll={{ x: '130%', y: 240 }}
/>
我想将一个属性传递给EditableCell,EditableCell是另一个文件中定义的组件。
当我跟随它给我错误
const components = {
body: {
row: EditableFormRow,
cell: <EditableCell type="text"/>,
},
};
我不确定如何传递道具。请帮忙。
最佳答案
您需要将组件包装在函数中:
cell: () => <EditableCell type="text"/>,