Merge pull request #183 from savardc/missing-on-select-prop

Add missing onSelect to shared props
nolan/hinaloe-test
Etienne Lemay 2018-05-08 08:25:25 -04:00 committed by GitHub
commit f9d47e9b13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ const EmojiDefaultProps = {
const PickerPropTypes = {
onClick: PropTypes.func,
onSelect: PropTypes.func,
onSkinChange: PropTypes.func,
perLine: PropTypes.number,
emojiSize: PropTypes.number,
@ -74,6 +75,7 @@ const PickerPropTypes = {
const PickerDefaultProps = {
onClick: () => {},
onSelect: () => {},
onSkinChange: () => {},
emojiSize: 24,
perLine: 9,