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