1.4.6 • Published 3 years ago

react-asap-forms v1.4.6

Weekly downloads
37
License
MIT
Repository
github
Last release
3 years ago

react-asap-forms

Reuseable Login, Signup Forms

NPM JavaScript Style Guide

Install

npm install --save react-asap-forms

Usage

>You have to import this file at the top of app.js

import "react-asap-forms/dist/index.css";
```jsx
import React, { Component } from 'react'

import { LoginForm, SignupForm } from 'react-asap-forms'
import 'react-asap-forms/dist/index.css'

class LoginExample extends Component {
   var data = {
    heading: "",    //optional bydefault it value 'Login'
    loginFormSubmit: formSubmit,
    validationSchema, //validation schema object to validate form
    initialValues  // initial values to populate form fields
  }

  render() {
    return <LoginForm {...data} />
  }
}



class SignUpExample extends Component {
   var data = {
    heading: "",    //optional bydefault it value 'Register'
    signupFormSubmit: formSubmit,
    validationSchema, //validation schema object to validate form
    initialValues  // initial values to populate form fields
  }

  render() {
    return <SignupForm {...data} />
  }
}

License

MIT © SaqibJamil7866

1.4.6

3 years ago

1.4.5

3 years ago

1.4.4

3 years ago

1.4.3

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.3.2

3 years ago

1.4.0

3 years ago

1.3.1

3 years ago

1.2.2

3 years ago

1.3.0

3 years ago

1.2.0

3 years ago

1.2.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago