UNPKG

react-native-google-analytics-bridge

Version:

React Native bridge for using native Google Analytics libraries on iOS and Android

9 lines (8 loc) 358 B
import { Platform } from "react-native"; import FunctionCallTagHandlerAndroid from "./FunctionCallTagHandlerAndroid"; import FunctionCallTagHandlerIOS from "./FunctionCallTagHandlerIOS"; const FunctionCallTagHandler = Platform.select({ ios: FunctionCallTagHandlerIOS, android: FunctionCallTagHandlerAndroid }); export default FunctionCallTagHandler;