react-form-pro
Version:
43 lines (26 loc) • 1.08 kB
Markdown
# React Form Pro (XXXkb gzip)
[](https://travis-ci.org/github/webbestmaster/react-form-pro)
[](https://github.com/webbestmaster/react-form-pro/blob/master/license)
[](https://www.npmjs.com/package/react-form-pro)

[](https://github.com/webbestmaster/react-form-pro/)
**[Live demo](http://webbestmaster.github.io/react-form-pro)**
## Install
```bash
npm i react-form-pro
```
### Typing Flow
Use `./flow-typed/react-form-pro.js`.
### Typing TypeScript
Use `./@types/index.d.ts`.
## Usage example
```javascript
// @flow
import React from 'react';
import {Form} from 'react-form-pro';
export function App(): React$Node {
return (
<Form/>
);
}
```