@kiwicom/react-native-native-modules
Version:
A group of native wrappers for react
18 lines (12 loc) • 404 B
JavaScript
;
import { NativeModules } from 'react-native';
const { RNLoggingModule } = NativeModules;
const LoggingModule = {
ancillaryDisplayed(type, step, hasActiveBooking) {
RNLoggingModule.ancillaryDisplayed(type, step, hasActiveBooking);
},
ancillaryPurchased(type, hasActiveBooking) {
RNLoggingModule.ancillaryPurchased(type, hasActiveBooking);
}
}
module.exports = { LoggingModule }