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

Main Page Title

MDN logo
`, }; export const MozillaExampleArticleHeader = { render: (args) => `

The Planet Earth

Posted on Wednesday, by Jane Smith

We live on a planet that's blue and green, with so many things still unseen.

Continue reading…

`, };