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.
47 lines
982 B
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';
|
|
|