import React, { Component } from 'react'; import { View, StyleSheet} from 'react-native'; import DatePicker from 'react-native-date-picker'; export default class App extends Component { state = { chosenDate: new Date() } setDate = (newDate) => this.setState({ chosenDate: newDate }) render() { return ( ); } } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: 'white', }, })