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