'client only'; import { Cog8ToothIcon, PlusCircleIcon } from "@heroicons/react/24/outline"; import { FC } from "react"; import { BillBadge } from "./BillBadge"; import { Bill, Location } from "../lib/db-types"; export interface LocationCardProps { month: Date, location: Location, bills: Bill[] } export const LocationCard:FC = ({month, location: { name }, bills}) =>

{month.getFullYear()}-{month.getMonth()+1} {name}

{ bills.map(bill => ) }
;