mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
9ce966ba1d
* Removing argTypes that are related to static props and don't have anything to do with the component. Also some general house keeping * updates
27 lines
487 B
JavaScript
27 lines
487 B
JavaScript
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';
|