UNPKG

react-form-pro

Version:
43 lines (26 loc) 1.08 kB
# React Form Pro (XXXkb gzip) [![Build Status](https://travis-ci.org/webbestmaster/react-form-pro.svg?branch=master)](https://travis-ci.org/github/webbestmaster/react-form-pro) [![GitHub license](https://img.shields.io/npm/l/react-form-pro)](https://github.com/webbestmaster/react-form-pro/blob/master/license) [![npm version](https://img.shields.io/npm/v/react-form-pro.svg?style=flat)](https://www.npmjs.com/package/react-form-pro) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/react-form-pro) [![GitHub stars](https://img.shields.io/github/stars/webbestmaster/react-form-pro?style=social&maxAge=2592000)](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/> ); } ```