component-library-mustafa-akagunduz
Version:
Air Command System projesi için geliştirilmiş React component kütüphanesi
33 lines (32 loc) • 828 B
TypeScript
import type { StoryObj } from '@storybook/react-vite';
declare const meta: {
title: string;
component: import("react").FC<import("../components/AutoComplete").AutoCompleteProps>;
parameters: {
layout: string;
};
tags: string[];
argTypes: {
disabled: {
control: "boolean";
};
placeholder: {
control: "text";
};
searchPlaceholder: {
control: "text";
};
};
args: {
onChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
options: {
value: string;
label: string;
}[];
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const WithSelection: Story;
export declare const Disabled: Story;