summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/popup/BackupPage.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-30 00:24:43 -0300
committerSebastian <sebasjm@gmail.com>2021-06-30 00:24:52 -0300
commit05e89a3cf7bc2e04ecb88be87ab5c14bb66d71e7 (patch)
tree2bab1f0b836b9b953a91da11e8d696d065e9f2a6 /packages/taler-wallet-webextension/src/popup/BackupPage.tsx
parentb43c476590508b5b3b10a5c2da34ac30f1fbdf57 (diff)
downloadwallet-core-05e89a3cf7bc2e04ecb88be87ab5c14bb66d71e7.tar.gz
wallet-core-05e89a3cf7bc2e04ecb88be87ab5c14bb66d71e7.tar.bz2
wallet-core-05e89a3cf7bc2e04ecb88be87ab5c14bb66d71e7.zip
developer mode
Diffstat (limited to 'packages/taler-wallet-webextension/src/popup/BackupPage.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/popup/BackupPage.tsx35
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/taler-wallet-webextension/src/popup/BackupPage.tsx b/packages/taler-wallet-webextension/src/popup/BackupPage.tsx
new file mode 100644
index 000000000..4bbca9072
--- /dev/null
+++ b/packages/taler-wallet-webextension/src/popup/BackupPage.tsx
@@ -0,0 +1,35 @@
+/*
+ This file is part of TALER
+ (C) 2016 GNUnet e.V.
+
+ 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.
+
+ 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
+ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+*/
+
+
+import { VNode } from "preact";
+import { useDevContext } from "../context/useDevContext";
+import { useExtendedPermissions } from "../hooks/useExtendedPermissions";
+
+export function BackupPage(): VNode {
+ return <BackupView />;
+}
+
+export interface ViewProps {
+}
+
+export function BackupView({}: ViewProps): VNode {
+ return (
+ <div>
+ Backup page
+ </div>
+ )
+} \ No newline at end of file