A react gif picker using giphy API
npm install react-gif-picker

react-giphy-picker is a simple gif picker component using giphy API
On select it returns a Gif object in the format specified for an image from Giphy's search API giphy sample-response-search
npm install react-giphy-picker --save
``jsx
import Picker from 'react-giphy-picker'
import ReactDOM from 'react-dom'
import React, { Component, PropTypes } from 'react'
class TestComponent extends Component {
log (gif) {
console.log(gif)
}
render () {
return (
ReactDOM.render(
document.getElementById('root')
)
`
#### onSelected (required)
Handler returns the emoji character selected from the emoji picker.
#### visibletrue
Opacity to show or hide the picker. Defaults to .
#### modaltrue
If you want the emoji picker to be a modal. will set the wrapper as position: absolute.false
Or , which is the default will be position: static.
`sh``
npm install
npm run build
npm test
npm start