feat(SW-1012): format opening hours

This commit is contained in:
Fredrik Thorsson
2024-12-11 13:35:31 +01:00
parent c47523df96
commit abebfb1feb
8 changed files with 109 additions and 22 deletions

View File

@@ -1,5 +1,15 @@
import type { RestaurantData, RestaurantOpeningHours } from "@/types/hotel"
export enum Days {
Monday = "monday",
Tuesday = "tuesday",
Wednesday = "wednesday",
Thursday = "thursday",
Friday = "friday",
Saturday = "saturday",
Sunday = "sunday",
}
export interface RestaurantBarSidePeekProps {
restaurants: RestaurantData[]
}