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.
 
 
 
 
 
ciphermask/ui/pages/send/send-content/send-content.stories.js

23 lines
691 B

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')}
/>
);
};