import { FC } from "react"; import { formatYearMonth } from "../lib/format"; export interface MonthTitleProps { year: number; month: number; } export const MonthTitle:FC = ({year, month}) =>
{`${formatYearMonth(year, month)}`}