diff options
| author | Sebastian <sebasjm@gmail.com> | 2021-06-16 18:21:03 -0300 |
|---|---|---|
| committer | Sebastian <sebasjm@gmail.com> | 2021-06-16 18:21:15 -0300 |
| commit | 0b4976601fe2ecb0462fe72ae188b5cbba06d9cc (patch) | |
| tree | 93f18c88d754430d2c1261109c1e9b6c1ac7a500 /packages/taler-wallet-webextension/src/wallet/Withdraw.stories.tsx | |
| parent | d58945c830a33910dd93bc159c1ffe5d490df846 (diff) | |
components renaming to follow react pattern
Diffstat (limited to 'packages/taler-wallet-webextension/src/wallet/Withdraw.stories.tsx')
| -rw-r--r-- | packages/taler-wallet-webextension/src/wallet/Withdraw.stories.tsx | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/packages/taler-wallet-webextension/src/wallet/Withdraw.stories.tsx b/packages/taler-wallet-webextension/src/wallet/Withdraw.stories.tsx new file mode 100644 index 000000000..24fb17dfa --- /dev/null +++ b/packages/taler-wallet-webextension/src/wallet/Withdraw.stories.tsx @@ -0,0 +1,66 @@ +/* + This file is part of GNU Taler + (C) 2021 Taler Systems S.A. + + GNU Taler is free software; you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation; either version 3, or (at your option) any later version. + + GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with + GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/> + */ + +/** +* +* @author Sebastian Javier Marchano (sebasjm) +*/ + +import { h } from 'preact'; +import { View, ViewProps } from './Withdraw'; + + +export default { + title: 'wallet/withdraw', + component: View, + argTypes: { + }, +}; + +export const WithoutURI = (a: any) => <View {...a} />; +WithoutURI.args = { +} as ViewProps + +export const WithoutDetails = (a: any) => <View {...a} />; +WithoutDetails.args = { + talerWithdrawUri: 'http://something' +} as ViewProps + +export const Cancelled = (a: any) => <View {...a} />; +Cancelled.args = { + talerWithdrawUri: 'http://something', + details: { + amount: 'USD:2', + }, + cancelled: true +} as ViewProps + +export const CompleteWithExchange = (a: any) => <View {...a} />; +CompleteWithExchange.args = { + talerWithdrawUri: 'http://something', + details: { + amount: 'USD:2', + }, + selectedExchange: 'Some exchange' +} as ViewProps + +export const CompleteWithoutExchange = (a: any) => <View {...a} />; +CompleteWithoutExchange.args = { + talerWithdrawUri: 'http://something', + details: { + amount: 'USD:2', + }, +} as ViewProps |
