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