From 8d8d71807df6b775e5b0335eb1b2526a56d42ac6 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 14 Dec 2022 15:35:28 -0300 Subject: refactoring transaction component to standard component with test and examples --- .../demobank-ui/src/components/EmptyComponentExample/views.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'packages/demobank-ui/src/components/EmptyComponentExample/views.tsx') diff --git a/packages/demobank-ui/src/components/EmptyComponentExample/views.tsx b/packages/demobank-ui/src/components/EmptyComponentExample/views.tsx index 5784a7db5..e125ff415 100644 --- a/packages/demobank-ui/src/components/EmptyComponentExample/views.tsx +++ b/packages/demobank-ui/src/components/EmptyComponentExample/views.tsx @@ -15,18 +15,16 @@ */ import { h, VNode } from "preact"; -import { LoadingError } from "../../components/LoadingError.js"; -import { useTranslationContext } from "../../context/translation.js"; +import { useTranslationContext } from "@gnu-taler/web-util/lib/index.browser"; import { State } from "./index.js"; export function LoadingUriView({ error }: State.LoadingUriError): VNode { const { i18n } = useTranslationContext(); return ( - Could not load} - error={error} - /> +
+ Could not load +
); } -- cgit v1.2.3