import { storiesOf } from '@storybook/html'; import { withNotes } from '@storybook/addon-notes'; storiesOf('Addons|Notes', module) .addDecorator(withNotes) .add( 'Simple note', () => `

This is a fragment of HTML

`, { notes: 'My notes on some bold text', } );