import TableRow from './TableRow'; import TableHeader from './TableHeader'; import Badge from './Badge'; import Pagination from './Pagination'; const columns = [ {key: 'name', label: 'Product'}, {key: 'sku', label: 'SKU'}, {key: 'category', label: 'Category'}, {key: 'price', label: 'Price'}, {key: 'stock', label: 'Stock'}, {key: 'status', label: 'Status'}, {key: 'rating', label: 'Rating'}, ]; export default function ProductTable({products}) { return (

Products

{products.length} items
{columns.map(col => ( ))} {products.map(product => ( ))}
); }