@wfp/ui
Version:
WFP UI Kit
40 lines (23 loc) • 583 B
text/mdx
<!--
### Pagination
### Responsive
By adding `ReactTable--responsive` the table will be displayed as a list on mobile devices.
```js
<ReactTable className="ReactTable--responsive" />
```
### Alternating Row colors
By adding `-striped` the table will get alternating row colors.
```js
<ReactTable className="-striped" />
```
## Highlight on hover
By adding ` -highlight` row will be highlighten on hover
```js
<ReactTable className="-highlight" />
```
## Border
By adding ` -border` a border will be added to the table
```js
<ReactTable className="-border" />
```
-->