본문 바로가기
Frontend#Frontend#React조회 21

useFormStatus란?

정의

React 19 폼 상태 훅. pending·method·data를 자식 컴포넌트에서 조회.

useFormStatus란?

부모 form의 제출 상태를 자식 버튼 등에서 조회한다.

function Submit() {
  const { pending } = useFormStatus();
  return <button disabled={pending}>{pending? '전송 중' : '보내기'}</button>;
}

🔗 함께 보면 좋은 용어

Frontend 전체 →