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.
25 lines
465 B
25 lines
465 B
import React from 'react';
|
|
import ConfirmSendEther from '.';
|
|
|
|
export default {
|
|
title: 'Pages/ConfirmSendEther',
|
|
id: __filename,
|
|
component: ConfirmSendEther,
|
|
argTypes: {
|
|
editTransaction: {
|
|
action: 'editTransaction',
|
|
},
|
|
history: {
|
|
control: 'object',
|
|
},
|
|
txParams: {
|
|
control: 'object',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => {
|
|
return <ConfirmSendEther {...args} />;
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|