1.0.1 • Published 5 years ago

redux-form-auto-antd v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

redux-form-auto-antd

redux-form-auto-antd allows your React application to automatically generate forms and validation code using ReduxForm for state management and Ant Design for component rendering. It uses redux-form-antd to manage ReduxForm field connection.

It extends redux-form-auto and the API is identical (documentation).

Watch a demo

Demo

Installation

$ npm install redux-form-auto-antd --save

Usage

Just like redux-form-auto except you import this one. You are also in charge of importing antd.

    import { Schema } from 'redux-form-auto-antd'

    const client = new Schema('client', {
      name: {
        type: 'string',
        required: true,
        max: 32
      },
      age: {
        type: 'number'
      }
    })

    const MyForm = ({ onSubmit }) =>
      <Autoform
        schema={client}
        onSubmit={onSubmit}
      />