import Modal from "../ui/Modal"; import Button from "../ui/Button"; interface Props { projectName: string; onConfirm: () => void; onCancel: () => void; } export default function ConfirmRemoveModal({ projectName, onConfirm, onCancel }: Props) { return ( } >

Are you sure you want to remove{" "} {projectName}? This will delete the container, config volume, and stored credentials.

); }