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:
parent
d1d01f434d
commit
aec31cc8b7
27
ui/pages/send/send-footer/send-footer.stories.js
Normal file
27
ui/pages/send/send-footer/send-footer.stories.js
Normal 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={{}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user