UNPKG

react-day-picker

Version:

Customizable Date Picker for React

12 lines (10 loc) 229 B
import { format, Locale } from 'date-fns'; /** * The default formatter for the caption. */ export function formatCaption( month: Date, options?: { locale?: Locale } ): string { return format(month, 'LLLL y', options); }