storybook/examples/html-kitchen-sink/stories/addon-notes.stories.js
2019-06-27 18:10:45 +08:00

17 lines
263 B
JavaScript

export default {
title: 'Addons|Notes',
};
export const story1 = () =>
`<p>
<strong>
This is a fragment of HTML
</strong>
</p>`;
story1.story = {
name: 'Simple note',
parameters: {
notes: 'My notes on some bold text',
},
};