Encountering an issue while attempting to import:
import DropDownPicker from 'react-native-dropdown-picker';
import DateTimePicker from '@react-native-community/datetimepicker';
<DropDownPicker
zIndex={5000}
onOpen={() => setIsVisible(false)}
onClose={() => setIsVisible(true)}
placeholder="Choose A Location"
items={locations}
arrowColor='deepskyblue'
containerStyle={{ height: 50, marginTop: 6, marginBottom: 14 }}
style={{ backgroundColor: 'white' }}
itemStyle={{ justifyContent: 'flex-start' }}
dropDownStyle={{ backgroundColor: 'white' }}
onChangeItem={item => setLocation(item.label)}
/>
<DateTimePicker
format="DD-MM-YYYY"
value={new Date(date)}
mode="date"
display="spinner"
onChange={onChange}
/>
Unsure of why this error is arising and in need of assistance with resolving it, any help would be greatly appreciated.