Track User Events
Start sending your users' events on your platform to Referd.
import {GameballSdk} from 'react-native-gameball';GameballSdk.sendEvent({"review": {}})
.then(response => console.log(response)) // on success
.catch(error => console.log(error)) // on errorGameballSdk.sendEvent({
"Buy": {
"Amount": "100",
"Type": “Electronics”
}}).then(response => console.log(response)) // on success
.catch(error => console.log(error)) // on errorLast updated