Thêm tính năng sửa tính năng pending bị lỗi

This commit is contained in:
2026-06-14 21:07:21 +07:00
parent 8ff09eeeaf
commit 7cc724a133
15 changed files with 439 additions and 110 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react';
interface ConfirmModalProps {
isOpen: boolean;
title?: string;
message: string;
confirmText?: string;
cancelText?: string;
onConfirm: () => void;
onCancel: () => void;
}
export declare const ConfirmModal: React.FC<ConfirmModalProps>;
export {};