Implementing the Ask Form
Learn to implement the ask form for our frontend.
We'll cover the following...
We'll cover the following...
Now, it’s time to implement the form so that our users can ask a question. We’ll do this by leveraging React Hook Form and our form’s styled components. Follow these steps:
Open
AskPage.tsxand add the followingimportstatements:
import {Fieldset,FieldContainer,FieldLabel,FieldInput,FieldTextArea,FormButtonContainer,PrimaryButton,} from './Styles';import { useForm } from 'react-hook-form';
Add a type to represent the form data just above the
AskPagecomponent definition and just below theimport...