antd-v4-compatible-form
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

antd-v4-compatible-form

antd@4.x Form, Used for antd@3.x

Usage

import Form from 'antd-v4-compatible-form';

const ExampleForm = () => {
  function handleFinish(data) {
    console.log(data);
  }
  return (
    <Form onFinish={handleFinish}>
      <Form.Item name="username" rules={[{ required: true }]}>
        <Input placeholder="Please enter username." maxLength={128} />
      </Form.Item>
      <Button type="primary" htmlType="submit" block>
        Submit
      </Button>
    </Form>
  );
};

Document

https://next.ant.design/components/form-cn/

Package Sidebar

Install

npm i antd-v4-compatible-form

Weekly Downloads

1

Version

0.0.5

License

MIT

Unpacked Size

1.9 MB

Total Files

27

Last publish

Collaborators

  • liumingyi