react-forms/README.md

372 B

react-forms

Install

Add this line to your package.json dependencies :

"react-forms": "git+https://git.bluesquare.io/bluesquare-packages/react-forms.git",

Usage

import React, { Component } from 'react'

import MyComponent from 'react-forms'

class Example extends Component {
  render () {
    return (
      <MyComponent />
    )
  }
}