import { render } from "sass-embedded"; import { createHTMLElement } from "../HTMLElement"; export default { title: "Sectioning/Article", tags: ["autodocs"], args: { content: "Content", }, // Render the element render: (args) => { return `
Article Content
`; }, }; export const Default = {}; export const WithContent = { render: (args) => { return createHTMLElement("article", { content: `

Article Title

This is the first paragraph of the article.

This is the second paragraph of the article.

`, }); }, }; export const MozillaExample = { render: (args) => `

Jurassic Park

Review

Dinos were great!

User reviews

Too scary!

Way too scary for me.

Posted on by Lisa.

Love the dinos!

I agree, dinos are my favorite.

Posted on by Tom.

`, };