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...

26 lines
487 B

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