storybook/examples/html-kitchen-sink/stories/addon-notes.stories.js
2018-12-10 14:18:37 +01:00

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',
}
);