import AddMilestoneForm from '@/components/Milestones/AddMilestoneForm'; import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog'; interface MilestoneModalProps { isOpen: boolean; onClose: () => void; onSuccess?: () => void; } export default function MilestoneModal({ isOpen, onClose, onSuccess }: MilestoneModalProps) { const handleSuccess = () => { if (onSuccess) { onSuccess(); } onClose(); }; return ( ADD MILESTONE
); }