aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/wallet/DestinationSelection.stories.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-08-17 16:12:21 -0300
committerSebastian <sebasjm@gmail.com>2022-08-17 16:12:44 -0300
commit16777ba20564d8b002e33a01afa3ea49ca715cce (patch)
tree47f976276e4e7e049828ba9a38734d964fab52bc /packages/taler-wallet-webextension/src/wallet/DestinationSelection.stories.tsx
parent17e627c2f024f6a4fe2b40b370ab1c010488ccc3 (diff)
some fixes
Diffstat (limited to 'packages/taler-wallet-webextension/src/wallet/DestinationSelection.stories.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/wallet/DestinationSelection.stories.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/taler-wallet-webextension/src/wallet/DestinationSelection.stories.tsx b/packages/taler-wallet-webextension/src/wallet/DestinationSelection.stories.tsx
index ec997dfb3..166b2c007 100644
--- a/packages/taler-wallet-webextension/src/wallet/DestinationSelection.stories.tsx
+++ b/packages/taler-wallet-webextension/src/wallet/DestinationSelection.stories.tsx
@@ -23,6 +23,7 @@ import { createExample } from "../test-utils.js";
import {
DestinationSelectionGetCash,
DestinationSelectionSendCash,
+ SelectCurrencyView,
} from "./DestinationSelection.js";
export default {
@@ -35,3 +36,9 @@ export const GetCash = createExample(DestinationSelectionGetCash, {
export const SendCash = createExample(DestinationSelectionSendCash, {
amount: "eur:1",
});
+export const SelectCurrency = createExample(SelectCurrencyView, {
+ list: {
+ "": "Select a currency",
+ USD: "USD",
+ },
+});