Files
openmonetis/components/dashboard/welcome-widget.ts

10 lines
255 B
TypeScript

import {
formatBusinessCurrentDate,
getBusinessGreeting,
} from "@/lib/utils/date";
export const formatCurrentDate = (date = new Date()) =>
formatBusinessCurrentDate(date);
export const getGreeting = (date = new Date()) => getBusinessGreeting(date);