1.0.1 • Published 5 years ago

redux-form-auto-bootstrap3 v1.0.1

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

redux-form-auto-bootstrap3

redux-form-auto-bootstrap3 allows your React application to automatically generate forms and validation code using ReduxForm for state management and Bootstrap 3 for component rendering.

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

Play with the demo

Demo

Installation

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

Usage

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

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

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

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

Documentation