Add multiple nodes example

This commit is contained in:
igor-dv 2018-04-25 13:10:28 +03:00
parent a37f096f45
commit 20cace2d61
2 changed files with 21 additions and 0 deletions

View File

@ -12,6 +12,23 @@ exports[`Storyshots Demo heading 1`] = `
</h1>
`;
exports[`Storyshots Demo headings 1`] = `
<section>
<h1>
Hello World
</h1>
<h2>
Hello World
</h2>
<h3>
Hello World
</h3>
<h4>
Hello World
</h4>
</section>
`;
exports[`Storyshots Welcome Welcome 1`] = `
<div
class="main"

View File

@ -30,6 +30,10 @@ storiesOf('Welcome', module)
storiesOf('Demo', module)
.add('heading', () => '<h1>Hello World</h1>')
.add(
'headings',
() => '<h1>Hello World</h1><h2>Hello World</h2><h3>Hello World</h3><h4>Hello World</h4>'
)
.add('button', () => {
const button = document.createElement('button');
button.innerHTML = 'Hello Button';