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