1.0.13 • Published 3 years ago

mui-form-generator-fractal-band v1.0.13

Weekly downloads
29
License
ISC
Repository
github
Last release
3 years ago

mui-form-generator-fractal-band-2

NPM JavaScript Style Guide

Install

npm install --save mui-form-generator-fractal-band-2

Usage

import React from 'react'

import { Form, FormGenerator, FormButtons } from 'mui-form-generator-fractal-band-2'

const config = [
  {
    type: 'text',
    name: 'name',
    label: 'Name',
    rules: {
    	required: 'Enter your name'
    }
  }
] 


const Component = (props) => {
	
  const onSubmit = (data) => {
	console.log(data)
  }
  const onSubmitFail = (errors) => {
	console.log(errors)
  }
	
  return (
    <Form onSubmit={onSubmit} onSubmitFail={onSubmitFail}>
      <FormGenerator config={config} />
      <FormButtons />
    </Form>
 )
}

License

MIT © GingerBoy14

1.0.13

3 years ago

1.0.11

3 years ago

1.0.12

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.10

3 years ago

1.0.0

3 years ago