import React from 'react' import PropTypes from 'prop-types' import { TextInput } from 'react-native' import styles from '../styles' export default function AppTextInput({ style, ...props }) { return ( ) } AppTextInput.propTypes = { secureTextEntry: PropTypes.bool } AppTextInput.defaultProps = { style: [] }