Files
picrinth-admin/src/auth/auth.tsx
2025-08-28 18:37:26 +03:00

10 lines
161 B
TypeScript

import { useContext } from "react"
import AuthContext from "./auth-provider"
function useAuth() {
return useContext(AuthContext);
}
export default useAuth;