npm install @hua-labs/hua
import { useFormValidation } from "@hua-labs/hua/framework";
@hua-labs/motion-core의 모션 훅을 @hua-labs/hua/framework에서 통합 제공합니다.
UI 컴포넌트, 모션 훅, i18n을 하나의 패키지로 사용할 수 있습니다.
import { useFormValidation } from '@hua-labs/ui/form'; const { errors, validate, clearError } = useFormValidation(); function handleSubmit(e: React.FormEvent) { e.preventDefault(); const isValid = validate({ email: { value: emailValue, type: 'email' }, password: { value: passwordValue, type: 'password' }, }); if (isValid) { // submit } }