import React from 'react'; import { Meta, Story } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { IssueCredentialDialogContent as Component, Props, } from './IssueCredentialDialogContent'; const meta: Meta = { title: 'Molecules/Dialogs/Issue/Content', component: Component, }; export default meta; const Template: Story = (args) => ; export const Content = 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', }, ]; Content.args = { options, // this method is used to handle the result of submitting the dialog setDialogState: (state: any) => { // here is where you // wire the dialog result to your wallet. action('setDialogState')(state); }, };