react-floating-profile
Version:
React component to display your github profile <p align="left"> <a href="https://www.npmjs.com/package/react-floating-profile"><img src="https://flat.badgen.net/npm/v/react-floating-profile" alt="react-floating-profile version" /></a> <a href="http
11 lines (10 loc) • 322 B
TypeScript
import { ReactNode } from "react";
interface AuthContextType {
accessToken?: string;
setAccessToken: (value: string) => void;
}
export declare function AuthProvider({ children }: {
children: ReactNode;
}): import("react/jsx-runtime").JSX.Element;
export declare function useAuth(): AuthContextType;
export {};