'use client'; import { ButtonContainer } from '@/components/ButtonContainer'; import { Button } from '@/components/ui/button'; import { popModal } from '.'; import { ModalContent, ModalHeader } from './Modal/Container'; export interface ConfirmProps { title: string; text: string; onConfirm: () => void; onCancel?: () => void; } export default function Confirm({ title, text, onConfirm, onCancel, }: ConfirmProps) { return (

{text}

); }