Browse Source

Add story (label)

pull/332/head
Thomas 4 years ago
parent
commit
c8f249479f
  1. 12
      libs/ui/src/lib/value/value.component.stories.ts

12
libs/ui/src/lib/value/value.component.stories.ts

@ -22,6 +22,13 @@ Loading.args = {
value: undefined
};
export const Currency = Template.bind({});
Currency.args = {
currency: 'USD',
locale: 'en',
value: 7
};
export const Integer = Template.bind({});
Integer.args = {
isInteger: true,
@ -29,9 +36,8 @@ Integer.args = {
value: 7
};
export const Currency = Template.bind({});
Currency.args = {
currency: 'USD',
export const Label = Template.bind({});
Label.args = {
isInteger: true,
label: 'Label',
locale: 'en',

Loading…
Cancel
Save