我正在使用的这种类型的表(数据表)中,我必须像这样定义行和列(我使用map将按钮添加到从外部获取的数据中)
const finalData = data.map(({id, first_name, last_name, email, phone, attorney, leadType, date}) => ({id, first_name, last_name, email, phone, attorney, leadType, date, action: <button>button</button>}))
const rows = finalData;
<DataGrid rows={rows} columns={columns} pageSize={5} checkboxSelection />
但是在我的行中我没有按钮,而是得到了[object object]我该如何解决?