A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/app/modals/confirm-remove-account/confirm-remove-account.stor...

42 lines
762 B

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 <ConfirmRemoveAccount {...args} />;
};
export const DefaultStory = Template.bind({});
DefaultStory.storyName = 'Default';