1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/send/send-footer/send-footer.stories.js
2023-02-09 23:15:52 +05:30

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: {},
};