A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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: 'Pages/Send/SendFooter',
|
|
|
|
id: __filename,
|
|
|
|
};
|
|
|
|
|
|
|
|
export const DefaultStory = () => {
|
|
|
|
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={{}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
DefaultStory.storyName = 'Default';
|