import clsx from 'clsx'; import React from 'react'; import { useTranslation } from '@/hooks/useTranslation'; const Alert: React.FC<{ title: string; message: string; onCancel: () => void; onConfirm: () => void; }> = ({ title, message, onCancel, onConfirm }) => { const _ = useTranslation(); return (

{title}

{message}
); }; export default Alert;