picocss/stories/scripting/noscript.stories.ts
2025-04-04 11:51:33 +02:00

15 lines
299 B
TypeScript

import { createHTMLElement } from "../HTMLElement";
export default {
title: "Scripting/Noscript",
tags: ["autodocs"],
args: {
content: "Content",
},
// Render the <html> element
render: (args) => {
return createHTMLElement("noscript", args);
},
};
export const Default = {};