diff --git a/packages/react/src/components/dialog/Dialog.stories.tsx b/packages/react/src/components/dialog/Dialog.stories.tsx new file mode 100644 index 0000000..dbe880b --- /dev/null +++ b/packages/react/src/components/dialog/Dialog.stories.tsx @@ -0,0 +1,39 @@ +import type { DialogProps } from '@/components/dialog' +import type { Meta, StoryFn } from '@storybook/react' + +import { Button } from '@/components/button' +import { Card } from '@/components/card' +import { Dialog } from '@/components/dialog' + +const Component: Meta = { + title: 'Components/Dialog', + component: Dialog, +} + +const defaultProps = {} + +export const Default: StoryFn = (args: DialogProps) => ( + + + + + {({ close }) => ( + + Dialog + + Dialog Content + + + + + + )} + + +) + +Default.args = { + ...defaultProps, +} + +export default Component