Created
October 27, 2016 12:58
-
-
Save AllenFang/1a6074c4004959ea525d69585f79e8bd to your computer and use it in GitHub Desktop.
Hover, striped, condensed table
This file contains hidden or 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
| class HoverStripedTable extends React.Component { | |
| render() { | |
| return ( | |
| <BootstrapTable data={ products } striped hover condensed> | |
| <TableHeaderColumn dataField='id' isKey>Product ID</TableHeaderColumn> | |
| <TableHeaderColumn dataField='name'>Product Name</TableHeaderColumn> | |
| <TableHeaderColumn dataField='price'>Product Price</TableHeaderColumn> | |
| </BootstrapTable> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment