diff --git a/frontend/src/components/URLShortener/URLShortener.tsx b/frontend/src/components/URLShortener/URLShortener.tsx index 7aa75e1..aea2750 100644 --- a/frontend/src/components/URLShortener/URLShortener.tsx +++ b/frontend/src/components/URLShortener/URLShortener.tsx @@ -76,39 +76,41 @@ export default function URLShortener() { } } return ( -
-
-

Paste the URL

-
- setUrl(e.target.value)} - /> - -
+ <> +
+
+

Paste the URL

+
+ setUrl(e.target.value)} + /> + +
- {shortenedUrl && showInput && ( -
- - -
- )} -
-
-
-

Shorten It

+ {shortenedUrl && showInput && ( +
+ + +
+ )}
-
-

- Shortenit is a free and open-source URL shortening service designed - for simplicity and efficiency. -

+
+
+

Shorten It

+
+
+

+ Shortenit is a free and open-source URL shortening service designed + for simplicity and efficiency. +

+
-
+ ); }