Description
Need to have both row click and cell click.
If I click cell only cell click should be triggered.
If I click row click only row click should be triggered.
But on cell click, the row click also getting triggered.
example via Codesandbox!
https://codesandbox.io/s/wonderful-wozniak-sn3yt?file=/src/App.js
Steps To Reproduce

You can use the stopPropagation() method of the click event, it would prevent the event from bubbling to the row:
onClick={(e) => {
onClickActionCB(row.original, "isEdit");
e.stopPropagation();
}}
Most helpful comment
You can use the
stopPropagation()method of the click event, it would prevent the event from bubbling to the row: