1.0.2 • Published 1 year ago

validate-antd-forms v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Validate Ant Design Forms

A utility library for validating Ant Design forms.

Table of Contents

Installation

To install the library, use npm or yarn:

npm install validate-antd-forms


```jsx
import {Rules} from 'antd-rules-input'


```jsx
<Form.Item
  label='name'
  name='name'
  rules={[
   Rules(5).len,
   Rules().require
  ]}
>
  <Input placeholder='name'></Input>
</Form.Item>
1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago