0.1.3 • Published 1 year ago

react-native-gt3 v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

react-native-gt3

react-native-gt3

Installation

npm install react-native-gt3

Usage

import { multiply, startGTCaptcha } from 'react-native-gt3';

// ...

const result = await multiply(3, 7);

startGTCaptcha(
  {
    success: captcha?.success,
    challenge: captcha?.challenge,
    gt: captcha?.gt,
  },
  'zh-TW'
)
  .then((res) => {
    console.log('then====>>>>', res);
  })
  .catch((e) => {
    console.log('catch====>>>>', e);
  });

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library