Add send-footer to Storybook (#12082)

feature/default_network_editable
Etienne Dusseault 3 years ago committed by GitHub
parent d1d01f434d
commit aec31cc8b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 27
      ui/pages/send/send-footer/send-footer.stories.js

@ -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…
Cancel
Save