typed-react-form-yup
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

typed-react-form-yup

The yup validation wrapper to use with typed-react-form.

Usage

import { yupValidator } from "typed-react-form-yup";

const FormSchema = yup.object({
    name: yup.string().required(),
    email: yup.string().required(),
});

const form = useForm({ name: "", email: "" }, yupValidator(FormSchema, { abortEarly: false }));

// ...

Readme

Keywords

none

Package Sidebar

Install

npm i typed-react-form-yup

Weekly Downloads

7

Version

1.0.2

License

MIT

Unpacked Size

6.44 kB

Total Files

5

Last publish

Collaborators

  • codestix