1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Add send-footer to Storybook (#12082)

This commit is contained in:
Etienne Dusseault 2021-09-13 18:35:17 -02:30 committed by GitHub
parent d1d01f434d
commit aec31cc8b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,27 @@
import React from 'react';
import { action } from '@storybook/addon-actions';
import { boolean } from '@storybook/addon-knobs';
import SendFooter from './send-footer.component';
export default {
title: 'SendFooter',
};
export const SendFooterComponent = () => {
const disabled = boolean('Disabled', false);
return (
<SendFooter
clearSend={() => action('Cancel Button Pressed')()}
sign={() => action('Next Button Pressed')()}
// The other props below are only to make the component show no error
from={{ address: '' }}
history={{ push: () => undefined }}
addToAddressBookIfNew={() => undefined}
disabled={disabled}
mostRecentOverviewPage=""
resetSendState={() => undefined}
sendErrors={{}}
/>
);
};