UNPKG

react-native-phone-country-picker-input

Version:
10 lines (9 loc) 372 B
import { registerRootComponent } from 'expo'; import PhonePickerInput from './src/PhonePickerInput'; // Library exports export { default } from './src/PhonePickerInput'; export * from './src/phonePickerUtils'; // Only register as root component if running in Expo environment if (typeof __DEV__ !== 'undefined' && __DEV__) { registerRootComponent(PhonePickerInput); }