dry-wash-pl/src/lib/date-helpers.ts

13 lines
315 B
TypeScript
Raw Normal View History

2024-11-24 12:08:45 +03:00
import dayjs from 'dayjs';
import i18next from 'i18next';
export const getTimeSlot = (start: string, end: string) => {
const startDay = dayjs(start).format('HH:mm');
const endDay = dayjs(end).format('HH:mm');
return i18next.t('~:dry-wash.washTime.timeSlot', {
start: startDay,
end: endDay,
});
};