import { Chip } from "@/components/ui/Chip"; export function TransactionRow({ merchant, category, amount, date }: { merchant: string; category: string; amount: string; date: string }) { return (

{merchant}

{date}

{amount}

{category}
); }