0.1.6 • Published 1 year ago

lucifer_form_builder v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

boomform-builder

NPM github github github github NPM

Why BoomForm ?

😎 It’s pretty simple. You just need to pass an object with the parameters you want and the form builder will automatically create all fields for you.

Full documentation here

Code Example

import React from 'react'
import Builder from 'boomform-builder'

const App = () => {
  return (
    <Builder
      global={{
        name: 'Fill your name'
      }}
      fields={[
        {
          id: 'name',
          type: 'name',
          validations: {
            first: { required: { msg: 'First name is required' } },
            last: { required: { msg: 'Last name is required' } }
          }
        }
      ]}
      button={{
        text: 'Submit'
      }}
    />
  )
}

export default App

Made in BoomTech

This is an imageThis is an imageThis is an imageThis is an imageThis is an image
Tigran NazaryanTigran PaployanSahak SahakyanHrach BekejyanTigran Vardanyan

Apache 2.0 License.