import { NAME, pattern, UI, type VNode, Writable } from "commonfabric"; import { Controls, SwitchControl } from "../ui/controls/index.ts"; // deno-lint-ignore no-empty-interface interface TextareaStoryInput {} export interface TextareaStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { const disabled = new Writable(false); return { [NAME]: "cf-textarea Story", [UI]: (
), controls: ( ), }; });