import { FC } from "react" import { Bill } from "../lib/db-types" export interface BillBadgeProps { bill: Bill }; export const BillBadge:FC = ({bill: { name, paid }}) =>
{name}