UNPKG

create-onetech-app

Version:

CLI to quickly set up React projects with popular templates and tools.

9 lines (7 loc) 222 B
import { useContext } from "react"; import { AuthContext } from "../context/Auth.context"; const useAuth = () => { const { ...props } = useContext(AuthContext); return { ...props }; }; export default useAuth;