Added highlight when hovering table rows

pull/2733/head
shaji618 1 month ago committed by GitHub
parent 092012a487
commit f58c863007
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -98,7 +98,11 @@ export default function BaseTable<T extends object>(props: BaseTableProps<T>) {
return (
<Box className={styles.container}>
<Table className={styles.table} striped={tableStyles?.striped ?? true}>
<Table
className={styles.table}
highlightOnHover
striped={tableStyles?.striped ?? true}
>
<Table.Thead hidden={tableStyles?.hideHeader}>
{instance.getHeaderGroups().map((headerGroup) => (
<Table.Tr key={headerGroup.id}>

Loading…
Cancel
Save