"use client"; import { FormAlertDialog } from "@/components/forms/form-alert-dialog"; import { FormCard, FormCardDescription, FormCardFooter, FormCardHeader, FormCardTitle, } from "@/components/forms/form-card"; export function FormDangerZone({ onSubmit, title, }: { onSubmit: () => Promise; title: string; }) { return ( Danger Zone This action cannot be undone. ); }