fixing issues with failed checks.

This commit is contained in:
t_hammb 2018-07-19 15:17:15 -07:00
parent cb7e790d2e
commit 41300e93cb

View File

@ -104,6 +104,12 @@ storiesOf('Addons|Knobs.withKnobs', module)
Cherry: 'cherry',
};
const otherFruits = {
Kiwi: 'kiwi',
Guava: 'guava',
Watermelon: 'watermelon',
};
// NOTE: the default value must not change - e.g., do not do date('Label', new Date()) or date('Label')
const defaultBirthday = new Date('Jan 20 2017 GMT+0');
@ -122,6 +128,7 @@ storiesOf('Addons|Knobs.withKnobs', module)
// Favorites
const nice = boolean('Nice', true, GROUP_IDS.FAVORITES);
const fruit = select('Fruit', fruits, 'apple', GROUP_IDS.FAVORITES);
const otherFruit = radioButtons('Other Fruit', otherFruits, 'watermelon', GROUP_IDS.FAVORITES);
const items = array('Items', ['Laptop', 'Book', 'Whiskey'], ',', GROUP_IDS.FAVORITES);
// Display
@ -153,6 +160,7 @@ storiesOf('Addons|Knobs.withKnobs', module)
<h1>Favorites</h1>
<p>Catchphrase: {salutation}</p>
<p>Fruit: {fruit}</p>
<p>OtherFruit: {otherFruit}</p>
<p>Items:</p>
<ul>{items.map(item => <li key={`${item}`}>{item}</li>)}</ul>
</div>