React杰夫
一个好的表格库
最小约800字节+ gzip
易于学习的API
以可重用和可测试的方式编写表单代码
无缝同步和异步表单验证(包括提交表单时)
开箱即用的实用功能
用React Hooks编写
使用TypeScript键入
安装
npm install react-jeff
用法
import React from "react"
import { useField , useForm } from "react-jeff"
/**
* 1. Write some validations that accept an input value and return an array of errors.
* (If the array is empty, the value is considered valid)
*/
function validateUsern
1