import React from 'react'; import ConfirmRemoveAccount from '.'; export default { title: 'Components/App/Modals/ConfirmRemoveAccount', id: __filename, component: ConfirmRemoveAccount, argTypes: { hideModal: { action: 'hideModal', }, removeAccount: { action: 'removeAccount', }, identity: { control: 'object', }, chainId: { control: 'text', }, rpcPrefs: { control: 'object', }, }, args: { identity: { control: 'object', }, chainId: 'chainId', rpcPrefs: { control: 'object', }, }, }; const Template = (args) => { return ; }; export const DefaultStory = Template.bind({}); DefaultStory.storyName = 'Default';