mirror of
https://github.com/picocss/pico.git
synced 2025-04-25 02:36:15 -04:00
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
![]() |
import { createHTMLElement } from "../HTMLElement";
|
||
|
|
||
|
export default {
|
||
|
title: "TableContent/TR",
|
||
|
tags: ["autodocs"],
|
||
|
args: {
|
||
|
content: "Content",
|
||
|
},
|
||
|
// Render the <html> element
|
||
|
render: (args) => {
|
||
|
return createHTMLElement("tr", args);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const Default = {};
|