10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
import { FC } from "react";
|
|
import { formatYearMonth } from "../lib/format";
|
|
import { YearMonth } from "../lib/db-types";
|
|
|
|
export interface MonthTitleProps {
|
|
yearMonth: YearMonth
|
|
}
|
|
|
|
export const MonthTitle:FC<MonthTitleProps> = ({ yearMonth }) =>
|
|
<div className="divider text-2xl">{`${formatYearMonth(yearMonth)}`}</div> |