import type { Meta, StoryObj } from '@storybook/react';
import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from '@konobangu/design-system/components/ui/dialog';
/**
* A window overlaid on either the primary window or another dialog window,
* rendering the content underneath inert.
*/
const meta = {
title: 'ui/Dialog',
component: Dialog,
tags: ['autodocs'],
argTypes: {},
render: (args) => (
),
parameters: {
layout: 'centered',
},
} satisfies Meta;
export default meta;
type Story = StoryObj;
/**
* The default form of the dialog.
*/
export const Default: Story = {};