import React from 'react';
import { View, Text, TextInput, StyleSheet } from 'react-native';
const CustomInput = ({ label, placeholder, value, onChangeText, ...otherProps }) => (
<View style={styles.container}>
{label && <Text style={styles.label}>{label}</Text>}
<TextInput...