2021-11-30 21:29:33 +01:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
2022-06-06 17:05:26 +02:00
|
|
|
(C) 2022 Taler Systems S.A.
|
2021-11-30 21:29:33 +01:00
|
|
|
|
|
|
|
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)
|
|
|
|
*/
|
|
|
|
|
2022-03-29 04:41:07 +02:00
|
|
|
import { createExample } from "../test-utils.js";
|
|
|
|
import { AddNewActionView as TestedComponent } from "./AddNewActionView.js";
|
2021-11-30 21:29:33 +01:00
|
|
|
|
|
|
|
export default {
|
2022-01-10 20:04:53 +01:00
|
|
|
title: "wallet/add new action",
|
2021-11-30 21:29:33 +01:00
|
|
|
component: TestedComponent,
|
|
|
|
argTypes: {
|
|
|
|
setDeviceName: () => Promise.resolve(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Initial = createExample(TestedComponent, {});
|