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/components/app/confirm-page-container/confirm-detail-row/confirm-detail-row.stories.js

47 lines
982 B

import React from 'react';
import ConfirmDetailRow from '.';
export default {
title: 'Components/App/ConfirmPageContainer/ConfirmDetailRow',
id: __filename,
argTypes: {
headerText: {
control: 'text',
},
headerTextClassName: {
control: 'text',
},
label: {
control: 'text',
},
onHeaderClick: {
control: 'text',
},
primaryValueTextColor: {
control: 'text',
},
primaryText: {
control: 'text',
},
secondaryText: {
control: 'text',
},
value: {
control: 'text',
},
},
args: {
headerText: 'headerText',
headerTextClassName: 'headerTextClassName',
label: 'label',
onHeaderClick: 'onHeaderClick',
primaryValueTextColor: 'primaryValueTextColor',
primaryText: 'primaryText',
secondaryText: 'secondaryText',
value: 'value',
},
};
export const DefaultStory = (args) => <ConfirmDetailRow {...args} />;
DefaultStory.storyName = 'Default';