import ConfirmationModal from 'ui-patterns/Dialogs/ConfirmationModal' import { PrivateApp } from '../PrivateAppsContext' interface DeleteAppModalProps { app: PrivateApp | null visible: boolean isLoading?: boolean onClose: () => void onConfirm: () => void } export function DeleteAppModal({ app, visible, isLoading, onClose, onConfirm, }: DeleteAppModalProps) { return (

Are you sure you want to delete {app?.name}? This will also remove all installations associated with this app.

) }