Cài đặt tính năng quản lí người dùng cho admin

This commit is contained in:
2026-06-13 18:24:14 +07:00
parent ea5799ffb5
commit 7b42058d77
21 changed files with 458 additions and 30 deletions
+7
View File
@@ -0,0 +1,7 @@
import React from 'react';
interface UserManagementModalProps {
isOpen: boolean;
onClose: () => void;
}
export declare const UserManagementModal: React.FC<UserManagementModalProps>;
export {};