import { View } from 'react-native'; import { Controller, useFormContext } from 'react-hook-form'; import { CheckBox } from '../form/CheckBox'; type Props = React.ComponentProps & { name: string; }; export function FormCheckBox({ name, ...restProps }: Props) { const form = useFormContext(); return ( { return ; }} name={name} /> ); }