import React from 'react'; import * as List from '../../containers/List'; import SafeAreaView from '../../containers/SafeAreaView'; import StatusBar from '../../containers/StatusBar'; import ListPicker from './ListPicker'; import { useUserPreferences } from '../../lib/methods/userPreferences'; import { AUDIO_PREFERENCE_DOWNLOAD, IMAGES_PREFERENCE_DOWNLOAD, MediaDownloadOption, VIDEO_PREFERENCE_DOWNLOAD } from '../../lib/constants'; const MediaAutoDownload = () => { const [imagesPreference, setImagesPreference] = useUserPreferences( IMAGES_PREFERENCE_DOWNLOAD, 'wifi_mobile_data' ); const [videoPreference, setVideoPreference] = useUserPreferences(VIDEO_PREFERENCE_DOWNLOAD, 'wifi'); const [audioPreference, setAudioPreference] = useUserPreferences(AUDIO_PREFERENCE_DOWNLOAD, 'wifi'); return ( ); }; export default MediaAutoDownload;