I use this short example snippet in my code
<BootstrapTable data={products}>
<TableHeaderColumn dataField="id" isKey={true}>Product ID</TableHeaderColumn>
<TableHeaderColumn dataField="name">Product Name</TableHeaderColumn>
<TableHeaderColumn dataField="price">Product Price</TableHeaderColumn>
</BootstrapTable>
And everything's work perfect. There's table, there's data. But (!) I see next warning message in my Chrome console:
whereas if I use my own elements, there's no warnings..
What's wrong? How to fix it?