Reuseable Login, Signup Forms
npm install --save react-asap-forms
>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 } from 'react-asap-forms'
import 'react-asap-forms/dist/index.css'
class Example extends Component {
var data = {
heading: "Register", *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} />
}
}
MIT © SaqibJamil7866