mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
33 lines
708 B
JavaScript
33 lines
708 B
JavaScript
import React from 'react';
|
|
|
|
import SendFooter from './send-footer.component';
|
|
|
|
export default {
|
|
title: 'Pages/Send/SendFooter',
|
|
|
|
argTypes: {
|
|
clearSend: { action: 'clearSend' },
|
|
sign: { action: 'sign' },
|
|
from: { control: 'object' },
|
|
disabled: { control: 'boolean' },
|
|
mostRecentOverviewPage: { control: 'text' },
|
|
sendErrors: { control: 'object' },
|
|
history: { action: 'history' },
|
|
resetSendState: { action: 'resetSendState' },
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => {
|
|
return <SendFooter {...args} />;
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
DefaultStory.args = {
|
|
from: {
|
|
address: '',
|
|
},
|
|
disabled: false,
|
|
mostRecentOverviewPage: '',
|
|
sendErrors: {},
|
|
};
|