import React from 'react'; import { Meta, Story } from '@storybook/react'; import Button from '@material-ui/core/Button'; import { action } from '@storybook/addon-actions'; import { FullscreenDialog as Component, Props, } from '../../../atoms/FullscreenDialog'; import { CreateVerifiablePresentationDialogContent } from './CreateVerifiablePresentationDialogContent'; const meta: Meta = { title: 'Molecules/Dialogs/Present/Dialog', component: Component, }; export default meta; const Template: Story = (args) => ; export const Dialog = Template.bind({}); const options = [ { value: 'did:example:123#key-0', logo: 'https://issuer.interop.transmute.world/logo512.png', label: 'Key 0', }, { value: 'did:example:456#key-1', logo: 'https://issuer.interop.transmute.world/logo512.png', label: 'Key 1', }, ]; Dialog.args = { dialogTrigger: , dialogTitle: 'Present', dialogSubmitTitle: 'Present', dialogContent: ( { action('setDialogState')(state); }} /> ), handleSubmit: async () => { action('handleSubmit')(); }, handleCancel: async () => { action('handleCancel')(); }, };