1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-09-09 13:50:58 +02:00

docs(storybook): updating storybook

updating storybook to implement the two final lists

#179
This commit is contained in:
lucas.reis
2018-12-13 12:12:42 -02:00
parent 2de0fb6d4d
commit 0d89cbf262

View File

@@ -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>`;
});