2018-03-04 15:43:18 -05:00
|
|
|
# {{name}}
|
|
|
|
|
|
|
|
> {{description}}
|
|
|
|
|
|
|
|
[](https://www.npmjs.com/package/{{name}}) [](https://standardjs.com)
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
```bash
|
|
|
|
npm install --save {{name}}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import React, { Component } from 'react'
|
|
|
|
|
|
|
|
import MyComponent from '{{name}}'
|
|
|
|
|
|
|
|
class Example extends Component {
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<MyComponent />
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
2018-03-09 17:45:42 -05:00
|
|
|
{{license}} © [{{author}}](https://github.com/{{author}})
|