Skip to content

Commit

Permalink
attempt to reproduce missive#201
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanlawson committed Mar 10, 2019
1 parent 8c80e7d commit 1e7e879
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ storiesOf('Picker', module)
native={boolean('Unicode', true)}
set={select('Emoji pack', SETS, SETS[0])}
emojiSize={number('Emoji size', 24)}
perLine={number('Per line', 9)}
perLine={50}
title={text('Idle text', 'Your Title Here')}
emoji={text('Idle emoji', 'department_store')}
notFoundEmoji={text('Not found emoji', 'sleuth_or_spy')}
Expand Down Expand Up @@ -214,3 +214,11 @@ storiesOf('Headless Search', module)
</div>
)
})

storiesOf('Cannot read property id', module)
.addDecorator(withKnobs)
.add('Default', () => {
return (
<Picker backgroundImageFn={() => '/img/emojis.png'} emojiSize={30} set='twitter' onClick={this.onEmojiPick} custom={[]} emoji='' color='#ee427b' showPreview={false} title='EmojiQuiz' perLine={50} />
)
})

0 comments on commit 1e7e879

Please sign in to comment.