1import { requireNativeViewManager } from 'expo-modules-core';
2import { Platform } from 'react-native';
3
4let ExpoAppleAuthenticationButton: any;
5
6if (Platform.OS === 'ios') {
7  ExpoAppleAuthenticationButton = requireNativeViewManager('ExpoAppleAuthentication');
8}
9
10export default ExpoAppleAuthenticationButton;
11