UNPKG

react-native-cloud-storage

Version:

☁️ Save to & read from iCloud and Google Drive using React Native

11 lines (7 loc) 413 B
import type { RNCloudStorageConfigPluginOptions } from './types'; import withRNCloudStorageIos from './ios'; import type { ConfigPlugin } from '@expo/config-plugins'; // Android config plugin not needed as there's nothing to configure. const withRNCloudStorage: ConfigPlugin<RNCloudStorageConfigPluginOptions> = (config, options) => withRNCloudStorageIos(config, options); export default withRNCloudStorage;