react-bootstrap-table2
react-bootstrap-table2 copied to clipboard
Module not found: Error: Can't resolve 'react-bootstrap-table-next'
Hi all,
I'm trying to use react-bootstrap-table-next' but I got this error : Module not found: Error: Can't resolve 'react-bootstrap-table-next'. Here is my code (the most basic table)
import BootstrapTable from 'react-bootstrap-table-next';
const products = [ { id: 1, name: "Item 1", price: 100 }, { id: 2, name: "Item 2", price: 102 } ]; const columns = [ { dataField: "id", text: "Product ID" }, {dataField: "name", text: "Product Name" }, { dataField: "price", text: "Product Price"} ];
And the component <BootstrapTable keyField="id" data={products} columns={columns} />
My config

Thanks for help :-)