import { createHTMLElement } from "../HTMLElement"; export default { title: "Sectioning/Section", tags: ["autodocs"], args: { content: "Content", }, // Render the element render: (args) => { return createHTMLElement("section", args); }, }; export const Default = {}; export const MozillaExample = { render: (args) => `
Previous article Next article
`, };