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

HTML: Living Standard

Last Updated 12 July 2022

Some intro to the document.

Table of contents

First section

Some intro to the first section.

`, };