UNPKG

@wojtekmaj/react-recaptcha-v3

Version:

Integrate Google reCAPTCHA v3 with your React app

8 lines (7 loc) 294 B
type ReCaptchaProps = { action?: string; onVerify: (token: string) => void; refreshReCaptcha?: boolean | string | number | null; }; export default function ReCaptcha({ action, onVerify, refreshReCaptcha }: ReCaptchaProps): import("react/jsx-runtime").JSX.Element | null; export {};