mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
38 lines
848 B
JavaScript
38 lines
848 B
JavaScript
|
import React from 'react';
|
||
|
import NetworkAccountBalanceHeader from './network-account-balance-header';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/NetworkAccountBalanceHeader',
|
||
|
id: __filename,
|
||
|
argTypes: {
|
||
|
networkName: {
|
||
|
control: { type: 'text' },
|
||
|
},
|
||
|
accountName: {
|
||
|
control: { type: 'text' },
|
||
|
},
|
||
|
accountBalance: {
|
||
|
control: { type: 'number' },
|
||
|
},
|
||
|
tokenName: {
|
||
|
control: { type: 'text' },
|
||
|
},
|
||
|
accountAddress: {
|
||
|
control: { type: 'text' },
|
||
|
},
|
||
|
},
|
||
|
args: {
|
||
|
networkName: 'Ethereum Network',
|
||
|
accountName: 'Account 1',
|
||
|
accountBalance: 200.12,
|
||
|
tokenName: 'DAI',
|
||
|
accountAddress: '0x5CfE73b6021E818B776b421B1c4Db2474086a7e1',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => {
|
||
|
return <NetworkAccountBalanceHeader {...args} />;
|
||
|
};
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|