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

Results:

`, }; export const MozillaExample2 = { render: (args) => `

Car rental agency

...

Cars available for rent

Filter results

...
`, };