useFormState
https://nextjs.org/docs/app/api-reference/functions/server-actions
https://azukiazusa.dev/blog/use-form-state-to-display-error-messages-in-server-actions-forms/
https://zenn.dev/takepepe/articles/server-action-and-use-from-state#useformstate
javascripter (@javascripter)
UI速度改善のテク、
useOptimistic
()をさらに一般化したuseFormState()というhooksを多用している。
Server Actions以外でも「ローカル状態更新 → 重い更新操作 → 楽観的値のリセット」がめちゃ簡単にかけて便利。
コードほぼ変更せず、INPが一気に700msから150msとかになる
https://github.com/javascripter/react-hooks-use-form-state
https://gyazo.com/11b344e8ed3d2412ea42aea249d7e951
同名の別物だ