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