import { formatDate } from 'mirra-ui/chronos'; export class DateFormatter { format(date: Date, format: string, locale: string): string { return formatDate(date, format, locale); } }