picocss/stories/forms/output.stories.ts
2025-04-04 11:51:33 +02:00

18 lines
343 B
TypeScript

import { createHTMLElement } from "../HTMLElement";
export default {
title: "Forms/Output",
tags: ["autodocs"],
args: {
content: "Content",
for: "for",
form: "form",
name: "name",
},
// Render the <html> element
render: (args) => {
return createHTMLElement("output", args);
},
};
export const Default = {};