import { FC } from "react"; import { formatYearMonth } from "../lib/format"; import { YearMonth } from "../lib/db-types"; export interface MonthTitleProps { yearMonth: YearMonth } export const MonthTitle:FC = ({ yearMonth }) =>
{`${formatYearMonth(yearMonth)}`}