UNPKG

supertokens-auth-react

Version:

ReactJS SDK that provides login functionality with SuperTokens.

13 lines (12 loc) 489 B
import React from "react"; import type { UserContext } from "../../../../../types"; import type { FeatureBaseProps } from "../../../../../types"; import type Recipe from "../../../recipe"; import type { ComponentOverrideMap } from "../../../types"; declare type PropType = FeatureBaseProps<{ recipe: Recipe; userContext?: UserContext; useComponentOverrides: () => ComponentOverrideMap; }>; declare const LinkClickedScreen: React.FC<PropType>; export default LinkClickedScreen;