I have a react DataTable component like below:
<DataTable
title="Your Tickets"
columns={columns}
style={{backgroundColor: '#000'}}
data={tickets}
pagination
defaultSortAsc={false}
defaultSortField="updated_at"
customStyles={customStyles}
/>
All i'm trying to achieve is when i click on a row, i want to show the ID of that specific row. How can i do that?