sparkletown/sparkle

View on GitHub
src/types/forms.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { FieldError, useForm } from "react-hook-form";

export type FormFieldProps = {
  register: ReturnType<typeof useForm>["register"];
  error: FieldError | undefined;
};