export default async function ProductTable(props:any) { return ( {props.data.map((item:any) => ( ))}
Component Manufacturer Model # Price
{item.category} {item.brandName} {item.modelnumber} ${Number(item.salePrice).toFixed(2)}
); }