diff --git a/stories/index.js b/stories/index.js index 7d420bb..04b8ced 100644 --- a/stories/index.js +++ b/stories/index.js @@ -2,24 +2,26 @@ import React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; -import { withKnobs, text, boolean, number } from '@storybook/addon-knobs'; +import { withKnobs, text, boolean, number, select, color } from '@storybook/addon-knobs'; import { Picker, Emoji } from '../src'; import '../css/emoji-mart.css'; +const SETS = ['apple', 'google', 'twitter', 'emojione', 'messenger', 'facebook'] + storiesOf('Picker', module) .addDecorator(withKnobs) .add('default', () => ( )); @@ -27,10 +29,10 @@ storiesOf('Emoji', module) .addDecorator(withKnobs) .add('default', () => ( ));