2022-06-08から1日間の記事一覧

react-hook-form #1 stateまみれのcomponentを改善したい

目的 reactのform componentを書くときに入力値をstateで管理して、stateまみれのcomponentを作ってしまって可読性を下げてしまうことってありませんか? 例えば、こんな感じ。 import {NextPage} from 'next'; import {useState} from 'react'; const Start…