import { TableCell } from '@components/common/ui/Table.js'; import React from 'react'; interface PriceProps { price: string; qty: number; } export function Price({ price, qty }: PriceProps) { return (
{price} x {qty}
); }