import { createHTMLElement } from "../HTMLElement"; export default { title: "Sectioning/H2", tags: ["autodocs"], args: { content: "Content", }, // Render the element render: (args) => { return createHTMLElement("h2", args); }, }; export const Default = {};