import React from 'react'; import { Text, View } from 'react-native'; import { styles } from '../styles'; export default function Field({ label, children }) { return ( {label} {children} ); }