2022-07-22 19:58:37 +02:00
|
|
|
import React from 'react';
|
2021-08-31 00:53:41 +02:00
|
|
|
import ConfirmSendEther from '.';
|
|
|
|
|
|
|
|
export default {
|
2021-12-01 20:27:57 +01:00
|
|
|
title: 'Pages/ConfirmSendEther',
|
2021-09-15 20:55:48 +02:00
|
|
|
id: __filename,
|
2022-07-22 19:58:37 +02:00
|
|
|
component: ConfirmSendEther,
|
|
|
|
argTypes: {
|
|
|
|
editTransaction: {
|
|
|
|
action: 'editTransaction',
|
|
|
|
},
|
|
|
|
history: {
|
|
|
|
control: 'object',
|
|
|
|
},
|
|
|
|
txParams: {
|
|
|
|
control: 'object',
|
|
|
|
},
|
|
|
|
},
|
2021-08-31 00:53:41 +02:00
|
|
|
};
|
|
|
|
|
2022-07-22 19:58:37 +02:00
|
|
|
export const DefaultStory = (args) => {
|
|
|
|
return <ConfirmSendEther {...args} />;
|
2021-08-31 00:53:41 +02:00
|
|
|
};
|
2021-12-01 20:27:57 +01:00
|
|
|
|
|
|
|
DefaultStory.storyName = 'Default';
|