feat: add StorybookJS

This commit is contained in:
Michal 2025-04-04 11:51:33 +02:00
parent 1039a4788d
commit cbc1260553
116 changed files with 3560 additions and 2 deletions

View file

@ -0,0 +1,24 @@
import { createHTMLElement } from "../HTMLElement";
export default {
title: "ImageAndMultimedia/Area",
tags: ["autodocs"],
args: {
content: "Content",
shape: "poly",
coords: "129,0,260,95,129,138",
href: "https://developer.mozilla.org/docs/Web/HTTP",
alt: "Content",
download: "download",
ping: "https://developer.mozilla.org/docs/Web/HTTP",
referrerpolicy: "no-referrer",
rel: "noopener",
target: "_blank",
},
// Render the <html> element
render: (args) => {
return createHTMLElement("area", args);
},
};
export const Default = {};