mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
36 lines
702 B
JavaScript
36 lines
702 B
JavaScript
|
import React from 'react';
|
||
|
import MultilayerFeeMessage from './multi-layer-fee-message';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/MultilayerFeeMessage',
|
||
|
component: MultilayerFeeMessage,
|
||
|
argTypes: {
|
||
|
transaction: {
|
||
|
control: 'object',
|
||
|
},
|
||
|
layer2fee: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
nativeCurrency: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
plainStyle: {
|
||
|
control: 'boolean',
|
||
|
},
|
||
|
},
|
||
|
args: {
|
||
|
transaction: {
|
||
|
txParams: {
|
||
|
value: '0x123456789',
|
||
|
},
|
||
|
},
|
||
|
layer2fee: '0x987654321',
|
||
|
nativeCurrency: 'ETH',
|
||
|
plainStyle: true,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <MultilayerFeeMessage {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|