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, MediaDownloadOption.NEVER ); const [videoPreference, setVideoPreference] = useUserPreferences( VIDEO_PREFERENCE_DOWNLOAD, MediaDownloadOption.NEVER ); const [audioPreference, setAudioPreference] = useUserPreferences( AUDIO_PREFERENCE_DOWNLOAD, MediaDownloadOption.NEVER ); return ( ); }; export default MediaAutoDownload;