Skip to content

Commit

Permalink
docs(storybook): updating storybook
Browse files Browse the repository at this point in the history
updating storybook to implement the two final lists

nostalgic-css#179
  • Loading branch information
lucas.reis committed Dec 13, 2018
1 parent 2de0fb6 commit 0d89cbf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/lists.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ stories.add('list', () => {
const selectedClass = radios('type', {
default: 'is-disc',
'is-circle': 'is-circle',
'is-square': 'is-square',
}, 'is-disc');
return `<ul class="nes-list ${selectedClass}"> <li>Test</li> </ul>`;
return `<ul class="nes-list ${selectedClass}">
<li>Good morning.</li>
<li>Thou hast had a good night's sleep, I hope.</li>
<li>Thou hast had a good afternoon</li>
<li>Good night.</li>
</ul>`;
});

0 comments on commit 0d89cbf

Please sign in to comment.