Browse Source
Feature/improve Storybook story of fire calculator (#4451)
* Add default value for fire wealth
pull/4450/head
Thomas Kaul
4 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
libs/ui/src/lib/fire-calculator/fire-calculator.component.stories.ts
|
@ -45,7 +45,7 @@ type Story = StoryObj<GfFireCalculatorComponent>; |
|
|
export const Simple: Story = { |
|
|
export const Simple: Story = { |
|
|
args: { |
|
|
args: { |
|
|
currency: 'USD', |
|
|
currency: 'USD', |
|
|
fireWealth: 0, |
|
|
fireWealth: 50000, |
|
|
locale: locale |
|
|
locale: locale |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|