import button from './button.html'; export default { title: 'Addons/Source loader', }; export const Button = () => button; Button.story = { parameters: { storySource: { source: button, }, }, }; export const SimpleStory = () => `

This is a fragment of HTML

`; SimpleStory.story = { name: 'Very simple story', };