"use client" import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@/components/ui/dialog" import { RequestMachineForm } from "@/components/forms/request-machine-form" interface GetFreeMachineModalProps { open: boolean onOpenChange: (open: boolean) => void } export function GetFreeMachineModal({ open, onOpenChange, }: GetFreeMachineModalProps) { return ( Request a Free Vending Machine Tell us about your location and we'll recommend the right mix of machines for your team, customers, and space.
onOpenChange(false)} />
) }