Skip to content

Instantly share code, notes, and snippets.

@tetrashine
Created July 18, 2020 14:18
Show Gist options
  • Save tetrashine/303ee6a4eaf886a42c31e89cccee6bc1 to your computer and use it in GitHub Desktop.
Save tetrashine/303ee6a4eaf886a42c31e89cccee6bc1 to your computer and use it in GitHub Desktop.
react-recaptcha
import ReCAPTCHA from "react-google-recaptcha";
function onChange(value) {
console.log("Captcha value:", value);
}
ReactDOM.render(
<ReCAPTCHA
sitekey="Your client site key"
onChange={onChange}
/>,
document.body
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment