mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-01 05:05:25 +08:00
17 lines
263 B
JavaScript
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',
|
|
},
|
|
};
|