From 822d1ee1be99b7d96740585ddd1174b94916335d Mon Sep 17 00:00:00 2001 From: lonkaars Date: Mon, 12 Apr 2021 10:25:43 +0200 Subject: dprint formatter :tada: --- components/image.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'components/image.tsx') diff --git a/components/image.tsx b/components/image.tsx index ad84ff6..5a8b2cf 100644 --- a/components/image.tsx +++ b/components/image.tsx @@ -2,12 +2,10 @@ export default function Image(props: { src: string; alt?: string; }) { - return
- {props.alt}/ - { - props.alt &&
-

{props.alt}

-
- } -
+ return
+ {props.alt} + {props.alt &&
+

{props.alt}

+
} +
; } -- cgit v1.2.3