main create

This commit is contained in:
2026-06-13 16:06:24 +07:00
parent 3bb7649533
commit 568cb0e0bc
69 changed files with 9551 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import React from 'react';
interface LoginModalProps {
isOpen: boolean;
onClose: () => void;
}
export declare const LoginModal: React.FC<LoginModalProps>;
export {};