UNPKG

@wojtekmaj/react-recaptcha-v3

Version:

Integrate Google reCAPTCHA v3 with your React app

12 lines (11 loc) 343 B
import { useContext } from 'react'; import ReCaptchaContext from './ReCaptchaContext.js'; /** * useReCaptcha hook * * @description This hook is used to get the Google reCAPTCHA v3 context. * @returns {ReCaptchaContextType} Google reCAPTCHA v3 context */ export default function useReCaptcha() { return useContext(ReCaptchaContext); }