mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
import { storiesOf } from '@storybook/html';
|
|
|
|
storiesOf('Addons|Notes', module).add(
|
|
'Simple note',
|
|
() =>
|
|
`<p>
|
|
<strong>
|
|
This is a fragment of HTML
|
|
</strong>
|
|
</p>`,
|
|
{
|
|
notes: 'My notes on some bold text',
|
|
}
|
|
);
|