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.
37 lines
848 B
37 lines
848 B
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';
|
|
|