export default { title: "Example/HTML", tags: ["autodocs"], args: { content: "Content", }, // Render the element render: (args) => { return ` HTML Story

Hello, world!

`; }, }; export const Default = {};