@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
23 lines (22 loc) • 605 B
TypeScript
import { StoryObj } from "@storybook/react";
declare const meta: {
title: string;
component: {
({ defaultOpened, id: propId, ...props }: import("./Dialog.types").Props): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
args: {
title: string;
children: import("react/jsx-runtime").JSX.Element;
opened: true;
};
argTypes: {
onClose: {
action: string;
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const NoFocusTrap: Story;