Package Exports
- aiow-gifpicker
- aiow-gifpicker/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (aiow-gifpicker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React gifpicker component
Easy to implement React gifpicker field with searchsuggestions using the Tenor api.

Demo
Prerequisite
Request a free api key @ https://tenor.com/gifapi/documentation
Install
npm i gifpickeror
yarn add gifpickerImport
import GifPicker from 'gifpicker';
import 'gifpicker/dist/style.css';Usage
add prop apikey
add prop function onSelect to capture the chosen gifUrl
<GifPicker apikey="XXXXXXXXX" onSelect={gifUrl => console.log(gifUrl)} />