import { FC } from "react" import { Bill } from "@/app/lib/db-types" import Link from "next/link" export interface BillBadgeProps { locationId: string, bill: Bill }; export const BillBadge:FC = ({ locationId, bill: { _id: billId, name, paid, attachment }}) => {name} ;