Sửa lỗi nhấn + để thêm thành viên của tour

This commit is contained in:
2026-06-14 17:16:19 +07:00
parent c6d0fdd5d1
commit 81e715ddb3
24 changed files with 515 additions and 239 deletions
+8
View File
@@ -0,0 +1,8 @@
import React from 'react';
interface AddMemberModalProps {
isOpen: boolean;
onClose: () => void;
tourId: string;
}
export declare const AddMemberModal: React.FC<AddMemberModalProps>;
export {};