import { CardCell } from './CardCell'; import { type WorkScheduleWeek } from './OfficesAtmsMapProps'; const getSubTextLunch = ({ lunchHour, hasLunch = false, status = false }: WorkScheduleWeek) => { if (!status) { return 'Не работает'; } return lunchHour && hasLunch ? `Перерыв ${lunchHour}` : lunchHour; }; export const renderDay = ( { title, status, workTime, lunchHour, hasLunch }: WorkScheduleWeek, i: number, ) => ( );