Prettify settings files

This commit is contained in:
Sofiya Tepikin
2022-08-23 13:00:25 +02:00
parent ac7a36925f
commit 6808f40953
7 changed files with 34 additions and 37 deletions
+2 -6
View File
@@ -6,11 +6,7 @@ import styles from '../../../styles'
export default function PasswordField(props) {
return (
<AppTextInput
style={ styles.passwordField }
secureTextEntry
{...props}
/>
<AppTextInput style={styles.passwordField} secureTextEntry {...props} />
)
}
@@ -18,5 +14,5 @@ PasswordField.propTypes = {
placeholder: PropTypes.string,
value: PropTypes.string,
onChangeText: PropTypes.func,
autoFocus: PropTypes.bool
autoFocus: PropTypes.bool,
}