import { NAME, pattern, UI, type VNode } from "commonfabric"; // deno-lint-ignore no-empty-interface interface TableStoryInput {} export interface TableStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { return { [NAME]: "cf-table Story", [UI]: (
Name Role Status Alice Engineer Active Bob Designer Active Carol Manager Away Dave Engineer Offline
), controls: (
No interactive controls. Attributes: striped, hover, bordered, full-width, sticky-header. Sizes: sm, md, lg.
), }; });