mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
Add multiple nodes example
This commit is contained in:
parent
a37f096f45
commit
20cace2d61
@ -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"
|
||||
|
@ -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';
|
||||
|
Loading…
x
Reference in New Issue
Block a user