Created
October 27, 2016 12:57
-
-
Save AllenFang/4fb12be4ac0cab3671022e6141d3672c to your computer and use it in GitHub Desktop.
borderless 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 BorderlessTable extends React.Component { | |
render() { | |
return ( | |
<BootstrapTable data={ products } bordered={ false }> | |
<TableHeaderColumn dataField='id' isKey={ true }>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