### Domain Configuration Example Source: https://context7.com/douglasjunior/react-native-recaptcha-that-works/llms.txt Example demonstrating how to configure `recaptchaDomain` and `gstaticDomain` for specific regions. ```APIDOC ## Domain Configuration Configure `recaptchaDomain` and `gstaticDomain` for use in regions where Google services require alternative domains. The `baseUrl` must match a domain registered in your reCAPTCHA console. ```tsx import React, { useRef } from 'react'; import { View, Button } from 'react-native'; import Recaptcha, { RecaptchaRef } from 'react-native-recaptcha-that-works'; const GlobalRecaptchaExample = () => { const recaptcha = useRef(null); return (