react-bootstrap-table2 icon indicating copy to clipboard operation
react-bootstrap-table2 copied to clipboard

Module not found: Error: Can't resolve 'react-bootstrap-table-next'

Open Pikupman64 opened this issue 3 years ago • 0 comments

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 image

Thanks for help :-)

Pikupman64 avatar Apr 26 '22 11:04 Pikupman64