markdown-flow-ui
Version:
A React UI library for rendering markdown with interactive flow components, typewriter effects, and plugin support
36 lines (35 loc) • 854 B
TypeScript
import { StoryObj } from '@storybook/nextjs-vite';
declare const meta: {
title: string;
component: import('react').FC<import('./MarkdownFlowEditor').MarkdownFlowEditorProps>;
parameters: {
layout: string;
};
tags: string[];
argTypes: {
value: {
control: "text";
description: string;
};
onChange: {
action: string;
description: string;
};
className: {
control: "text";
description: string;
};
readOnly: {
control: "boolean";
description: string;
};
};
args: {
value: string;
className: string;
readOnly: false;
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const MarkdownFlowEditorStory: Story;