'use client'; import { Dialog, DialogBackdrop, DialogPanel, DialogTitle } from '@headlessui/react'; import FileInput from 'components/form/file-input'; import Input from 'components/form/input'; type ActivateWarrantyModalProps = { isOpen: boolean; onClose: () => void; }; function ActivateWarrantyModal({ onClose, isOpen }: ActivateWarrantyModalProps) { return ( {/* The backdrop, rendered as a fixed sibling to the panel container */} {/* Full-screen container to center the panel */}
{/* The actual dialog panel */} Activate Warranty
); } export default ActivateWarrantyModal;