(dep-add) add library for better handling form

Adding the react-hook-form library for better form handling than React's built-in state management, which often renders
every time input is entered.
This commit is contained in:
2025-10-04 22:34:12 +07:00
parent bf286af235
commit eca25d29cd
4 changed files with 40 additions and 14 deletions

View File

@ -14,7 +14,7 @@ const Provision = ({ fullName }: Props) => {
<p className="text-sm text-center font-light text-neutral-300 mt-2">
Just a few more steps to join the fun!
</p>
<ProvisionInput />
<ProvisionInput fullname={fullName} />
</div>
);
};