import React from 'react' import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native' import FormLabel from 'src/components/FormLabel' interface Props { style?: StyleProp label?: string children?: React.ReactNode } // A form field with a label and children export default function FormField({ style, label, children }: Props) { return ( {label} {children} ) } const styles = StyleSheet.create({ label: { marginBottom: 8 }, })