UNPKG

react-native-branch

Version:
12 lines (8 loc) 249 B
import { Platform, NativeModules } from 'react-native'; let RNBranch; if (Platform.OS === 'ios' || Platform.OS === 'android') { RNBranch = NativeModules.RNBranch; } else { throw new Error('Unsupported platform'); } export default RNBranch;