member agent

This commit is contained in:
unknown
2025-05-26 18:59:10 +07:00
parent b70b2f027d
commit c3c49da778
6 changed files with 157 additions and 86 deletions

View File

@ -143,4 +143,15 @@ export const getColumns = (handleUpdate: (data: any) => void): ColumnDef<AgentBa
);
}
},
{
id: 'actions',
cell: ({ row }) => {
const dataMembers = row.original;
return (
<button className="btn btn-sm btn-icon btn-clear btn-light" onClick={() => handleUpdate(dataMembers)}>
<KeenIcon icon="notepad-edit" />
</button>
);
}
}
];