storybook/examples/html-kitchen-sink/stories/source-loader.stories.js
2020-01-20 13:43:56 -05:00

31 lines
557 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: button,
},
},
};
export const SimpleStory = () =>
`<p>
<strong>
This is a fragment of HTML
</strong>
</p>`;
SimpleStory.story = {
name: 'Very simple story',
};