@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
18 lines (17 loc) • 401 B
TypeScript
import { StoryObj } from '@storybook/html';
import { KbdProps } from './Kbd';
declare const meta: {
title: string;
render: (args: KbdProps) => DocumentFragment;
argTypes: {
shortcut: {
control: string;
};
mini: {
control: string;
};
};
};
export default meta;
type Story = StoryObj<KbdProps>;
export declare const Normal: Story;