codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Form Validation with Next.js/React, Part 1

Filip Jerga
codeburst
Published in
3 min readJun 29, 2020

--

Let’s Get Started!

Let’s move on,

npm install --save react-hook-form
errors.title?.type==="required"
ref={register({required: true, maxLength: 30})}
ref={register({required: true, maxLength: 30, validate: { firstLetterUpper }})}
{ errors.title?.type === "firstLetterUpper" && <p>First letter should be uppercased!</p> }

Conclusion

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

No responses yet