import React from 'react' import { ComponentMeta } from '@storybook/react-vite' import { Dialog } from './Dialog' export default { title: 'Components/Dialog', component: Dialog, } as ComponentMeta export const Basic = ({ reflame: { rootRef } = {}, }: { reflame: { rootRef?: React.Ref } }) => { const store = Dialog.useStore({ defaultOpen: true }) return ( {/* rootRef tells Reflame to screenshot this portal'ed element instead of the empty root element */}
Hello! 👋
) }