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.
27 lines
487 B
27 lines
487 B
3 years ago
|
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';
|