From 72b429321553841ac1ff48cf974bfc65da01bb06 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 19 Dec 2022 12:23:39 -0300 Subject: pretty --- .../notifications/CreatedSuccessfully.tsx | 48 +++++++++++++--------- 1 file changed, 28 insertions(+), 20 deletions(-) (limited to 'packages/merchant-backoffice-ui/src/components/notifications/CreatedSuccessfully.tsx') diff --git a/packages/merchant-backoffice-ui/src/components/notifications/CreatedSuccessfully.tsx b/packages/merchant-backoffice-ui/src/components/notifications/CreatedSuccessfully.tsx index 4089f2222..073382fb1 100644 --- a/packages/merchant-backoffice-ui/src/components/notifications/CreatedSuccessfully.tsx +++ b/packages/merchant-backoffice-ui/src/components/notifications/CreatedSuccessfully.tsx @@ -14,9 +14,9 @@ GNU Taler; see the file COPYING. If not, see */ /** -* -* @author Sebastian Javier Marchano (sebasjm) -*/ + * + * @author Sebastian Javier Marchano (sebasjm) + */ import { ComponentChildren, h, VNode } from "preact"; interface Props { @@ -25,25 +25,33 @@ interface Props { children: ComponentChildren; } -export function CreatedSuccessfully({ children, onConfirm, onCreateAnother }: Props): VNode { - return
-
-
-
-
-

- Success. -

-
-
- {children} +export function CreatedSuccessfully({ + children, + onConfirm, + onCreateAnother, +}: Props): VNode { + return ( +
+
+
+
+
+

Success.

+
+
{children}
-
- {onCreateAnother && } - + {onCreateAnother && ( + + )} +
+
+
-
-
+ ); } -- cgit v1.2.3