Last active
September 15, 2020 19:51
-
-
Save dorner/9d4a85da51e068b4d145244f2c048423 to your computer and use it in GitHub Desktop.
Filtered table suggestion in React
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<FilteredTableController perPage="20" data={data} renderRowFunc={(data) => ...}> | |
<TopicFilters> | |
<TextFilter field="topicName" placeholder="Enter the topic name"/> | |
<CheckboxFilter field="myTopic" label="Show Only My Topics"/> | |
</TopicFilters> | |
<FilteredTable> | |
<Headers>...</Headers> | |
</FilteredTable> | |
</FilteredTableController> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment