mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
24 lines
691 B
JavaScript
24 lines
691 B
JavaScript
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')}
|
|
/>
|
|
);
|
|
};
|