// in ECMAScript 6 import { BootstrapTable, TableHeaderColumn } from 'react-bootstrap-table'; // or in ECMAScript 5 var ReactBSTable = require('react-bootstrap-table'); var BootstrapTable = ReactBSTable.Bootstra
Simple bootstrap table in react. Sortable columns Every cell can consists some number of links or buttons (it's possible to use fontawesome icons) You can choose date format Installation npm install react-bootstrap-table-light Example https://codesandbox.io/s/distracted-marco-7ucve5 ...
import { BootstrapTable } from "./components/react-bootstrap-table-light"; import { ColumnsStructureTable } from "./components/react-bootstrap-table-light/interfaces"; function App() { const columns: ColumnsStructureTable[] = [ { field: "#", // auto-number rows in a column headerName:...