mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
854fc71ae7
* Organizing storybook to echo app folder structure * Updating new stories to follow new convention from develop
27 lines
749 B
JavaScript
27 lines
749 B
JavaScript
import React from 'react';
|
|
import { boolean, text } from '@storybook/addon-knobs';
|
|
|
|
import SendContent from './send-content.component';
|
|
|
|
export default {
|
|
title: 'Pages/Send/SendContent',
|
|
id: __filename,
|
|
};
|
|
|
|
export const DefaultStory = () => {
|
|
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')}
|
|
/>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|