picocss/stories/table-content/col.stories.ts
2025-04-04 11:51:33 +02:00

16 lines
305 B
TypeScript

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