import { VStack, Button, FormControl, TextArea } from 'native-base'; import React from 'react'; import { useForm, Controller } from 'react-hook-form'; interface IFormInput { thought: string; } export const Example = () => { const { control, handleSubmit, errors } = useForm(); const onSubmit = (data: IFormInput) => { console.log('submiting with ', data); }; return ( What do you think? (