Basic SelectionUsage#import MaterialTable from "@material-table/core"; <MaterialTable // ... options={{ selection: true, }}/>;CopyLive Demo#noteSee here for more on the GLOBAL_VARS we use in our demosLive Editorfunction SelectionBasic() { return ( <MaterialTable title={"Click a Row"} data={SELECTION_DATA} columns={SELECTION_COLS} options={{ selection: true, }} /> ); }function SelectionBasic() { return ( <MaterialTable title={"Click a Row"} data={SELECTION_DATA} columns={SELECTION_COLS} options={{ selection: true, }} /> );}Result