Props
boolean
required
open
(open: boolean) => void
required
onOpenChange
string
required
jobId
string
required
customerName
(
jobId: string,
date: string,
timeSlot: string,
technicianName?: string
) => Promise<void>
required
onSchedule
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
QuickScheduleDialog component
import { QuickScheduleDialog } from '@/components/QuickScheduleDialog';
export default function Example() {
return (
<QuickScheduleDialog open={open} onOpenChange={onOpenChange} jobId={jobId} customerName={customerName} onSchedule={onSchedule} />
);
}