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