React-native library for https://kickbox.com
npm install react-native-kickbox
import Kickbox from 'react-native-kickbox';
// ...
const kb = new Kickbox('API_KEY_TEST');
kb.verify('bill.lumbergh@gamil.com')
.then((r) => {
setResult(JSON.stringify(r));
})
.catch((err) => {
setResult(JSON.stringify(err));
});
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library