--- const mockInventory = [ { name: "Charizard", set: "Base Set", condition: "NM", qty: 2, price: 350, market: 400, gain: 50 }, { name: "Pikachu", set: "Shining Legends", condition: "LP", qty: 5, price: 15, market: 20, gain: 5 }, ]; ---
| Card | Set | Condition | Qty | Price | Market | Gain/Loss |
|---|---|---|---|---|---|---|
| {card.name} | {card.set} | {card.condition} | {card.qty} | ${card.price} | ${card.market} | = 0 ? "text-success" : "text-danger"}> {card.gain >= 0 ? "+" : "-"}${Math.abs(card.gain)} |