import React, {Component} from 'react'; import { View, Text, Button, } from 'react-native'; export default class PickerExample extends Component { constructor(props) { super(props); this.state = { } } render() { return ( PickerExample ); } }