@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
21 lines (20 loc) • 471 B
TypeScript
import { StoryObj } from '@storybook/html';
import { ToastProps } from './Toast';
declare const meta: {
title: string;
render: (args: ToastProps) => DocumentFragment;
argTypes: {
title: {
control: string;
};
description: {
control: string;
};
action: {
control: string;
};
};
};
export default meta;
type Story = StoryObj<ToastProps>;
export declare const Normal: Story;