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.
26 lines
487 B
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';
|
|
|