Skip to content

Instantly share code, notes, and snippets.

@AllenFang
Created October 27, 2016 14:57
Show Gist options
  • Select an option

  • Save AllenFang/6e2b176e7cc439137417dfe747450cdd to your computer and use it in GitHub Desktop.

Select an option

Save AllenFang/6e2b176e7cc439137417dfe747450cdd to your computer and use it in GitHub Desktop.
Data title
class ColumnAlignTable extends React.Component {
render() {
return (
<BootstrapTable data={ products }>
<TableHeaderColumn dataField='id' isKey>Product ID</TableHeaderColumn>
<TableHeaderColumn dataField='name' columnTitle>Product Name</TableHeaderColumn>
<TableHeaderColumn dataField='price' columnTitle>Product Price</TableHeaderColumn>
</BootstrapTable>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment