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:
parent
9f0f729c5b
commit
48c5c07ded
23
ui/pages/send/send-content/send-content.stories.js
Normal file
23
ui/pages/send/send-content/send-content.stories.js
Normal 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')}
|
||||
/>
|
||||
);
|
||||
};
|
Loading…
Reference in New Issue
Block a user