import { createHTMLElement } from "../HTMLElement"; export default { title: "TextContent/P", tags: ["autodocs"], args: { content: "Content", }, // Render the element render: (args) => { return createHTMLElement("p", args); }, }; export const Default = {}; export const MozillaExample = { render: () => `

This is the first paragraph of text. This is the first paragraph of text. This is the first paragraph of text. This is the first paragraph of text.

This is the second paragraph. This is the second paragraph. This is the second paragraph. This is the second paragraph.

`, };