mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
fixing issues with failed checks.
This commit is contained in:
parent
cb7e790d2e
commit
41300e93cb
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user