1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 12:29:06 +01:00

send-content (#11962)

This commit is contained in:
Etienne Dusseault 2021-08-30 18:05:02 -05:00 committed by GitHub
parent 9f0f729c5b
commit 48c5c07ded
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,23 @@
import React from 'react';
import { boolean, text } from '@storybook/addon-knobs';
import SendContent from './send-content.component';
export default {
title: 'SendContent',
};
export const SendContentComponent = () => {
return (
<SendContent
showHexData={boolean('Show Hex Data', false)}
isOwnedAccount={boolean('Is In Address Book', true)}
noGasPrice={boolean('No Gas Price', false)}
isEthGasPrice={boolean('Backup Gas Price', false)}
gasIsExcessive={boolean('Gas Is Excessive', false)}
// Get error and warning message from messages.json
error={text('Error', 'connecting')}
warning={text('Warning', 'connecting')}
/>
);
};