1.2.1 • Published 5 years ago

bios-form v1.2.1

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

bios-form

GitHub license Build Status code style: prettier

The bios is taken from Latin βios. The bios-form is JavaScript library for building dynamic form.

  • Configuration: The bios-form makes it simple to create form. Configure form make your code more quicker to develop, simpler to understand, and easier to use.
  • Compatibility: The bios-form makes it quick to compatible components. It provide many decorator function to solve the adaptation problem.

Installation

npm install bios-form --save

// using ES6 modules
import BiosForm from 'bios-form';

// using CommonJS modules
var BiosForm = require('bios-form')

Examples

const props = {
  fields: [{
    name: 'test',
    widget: 'Input',
    title: 'Test Input'
  }],
  // Input: this is your custom component
  widgets: { Input }
}

class Example extends Component {
  render() {
    return <BiosForm {...props} />
  }
}

Learn how to use bios-form in your own project.

License

The bios-form is MIT licensed.