Represents a row in the product table. Used for type-safe row operations in TanStack Table.
const productRow: ProductRow = { row: { original: { title: "Sodium Chloride", price: 19.99, quantity: 500 } }}; Copy
const productRow: ProductRow = { row: { original: { title: "Sodium Chloride", price: 19.99, quantity: 500 } }};
Table row containing product data
Represents a row in the product table. Used for type-safe row operations in TanStack Table.
Example