react-forms/README.md

26 lines
372 B
Markdown

# react-forms
## Install
Add this line to your package.json dependencies :
```bash
"react-forms": "git+https://git.bluesquare.io/bluesquare-packages/react-forms.git",
```
## Usage
```jsx
import React, { Component } from 'react'
import MyComponent from 'react-forms'
class Example extends Component {
render () {
return (
<MyComponent />
)
}
}
```