From 5883d42d800c7b444c59d626bcaa5abca7dc83d0 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 19 Oct 2021 10:56:52 -0300 Subject: add template from merchant backoffice --- .../src/pages/home/TruthsPayingScreen.tsx | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 packages/anastasis-webui/src/pages/home/TruthsPayingScreen.tsx (limited to 'packages/anastasis-webui/src/pages/home/TruthsPayingScreen.tsx') diff --git a/packages/anastasis-webui/src/pages/home/TruthsPayingScreen.tsx b/packages/anastasis-webui/src/pages/home/TruthsPayingScreen.tsx new file mode 100644 index 000000000..5b8a835b8 --- /dev/null +++ b/packages/anastasis-webui/src/pages/home/TruthsPayingScreen.tsx @@ -0,0 +1,25 @@ +import { h, VNode } from "preact"; +import { BackupReducerProps, AnastasisClientFrame } from "./index"; + +export function TruthsPayingScreen(props: BackupReducerProps): VNode { + const payments = props.backupState.payments ?? []; + return ( + +

+ Some of the providers require a payment to store the encrypted + authentication information. +

+ + +
+ ); +} -- cgit v1.2.3