import dayjs from "dayjs"; export function formatDate(iso: string, format: string = "MMM, D YYYY") { return dayjs(iso).format(format); }