1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-05 08:01:20 +08:00

31 lines
570 B
JavaScript

import button from './button.html';
const packageName = './button.html';
const componentSubtitle = `import button from '${packageName}/lib/elements/buttons';`;
export default {
title: 'Addons/Source loader',
parameters: {
componentSubtitle,
},
};
export const Button = () => button;
Button.story = {
parameters: {
storySource: {
source: `source: ${button}`,
},
},
};
export const SimpleStory = () =>
`<p>
<strong>
This is a fragment of HTML
</strong>
</p>`;
SimpleStory.story = {
name: 'Very simple story',
};