import { Calendar } from "@medusajs/ui" function isUnavailable(date: Date) { // Disable all Sundays return date.getDay() === 0 } export default function CalendarUnavailable() { return (
All Sundays are unavailable for selection.
) }