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