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

The Disney movie The Little Mermaid was first released to theatres in 1989.

More info about the movie…

`, };