first commit

This commit is contained in:
RayExo
2026-07-12 15:16:07 +05:30
commit 2289301f26
915 changed files with 69400 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { useState, useEffect } from "react";
export function useAuth() {
const [user, setUser] = useState<any>(null);
const [loading, setLoading] = useState(true);
useEffect(() => {
// Basic auth check logic will go here
setLoading(false);
}, []);
return { user, loading };
}