mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 19:01:47 +00:00
10 lines
255 B
TypeScript
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);
|