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