Enable multi-selection on table views (#112)

* Enable multi-selection on table views

* Enable multi-selection
This commit is contained in:
Charles Bochet
2023-05-08 10:58:53 +02:00
committed by GitHub
parent 48a75358b4
commit 94ea9835a9
7 changed files with 86 additions and 18 deletions

View File

@ -98,6 +98,9 @@ function People() {
setSearchInput(searchValue);
setFilterSearch(filter);
}}
onRowSelectionChange={(selectedRows) => {
console.log(selectedRows);
}}
/>
}
</StyledPeopleContainer>