Skip to content

Commit

Permalink
docs(storybook): Inserting examples on storybook
Browse files Browse the repository at this point in the history
Inserting all examples created on storybook

#179
  • Loading branch information
lucas.reis committed Dec 12, 2018
1 parent 54765ee commit 22657a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/lists.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ stories.addDecorator(withKnobs);

stories.add('list', () => {
const selectedClass = radios('type', {
default: 'is-circle',
'is-arrow': 'is-arrow',
'is-pointer': 'is-pointer',
}, 'is-circle');
default: 'is-disc',
'is-circle': 'is-circle',
'is-square': 'is-square',
}, 'is-disc');
return `<ul class="nes-list ${selectedClass}"> <li>Test</li> </ul>`;
});

0 comments on commit 22657a9

Please sign in to comment.