From 57f1d93b6b6fb20a907be36f0f4cd9e440da30ea Mon Sep 17 00:00:00 2001 From: Mert Araz Date: Sat, 7 Oct 2023 16:43:22 +0300 Subject: [PATCH] tailwind responsive finished --- src/App.jsx | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 1cf95af..9af4498 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -20,24 +20,29 @@ function App() { return (
- - setTerm(text)} /> -
- {!images.length && !isLoading && ( -
No Images Found! -
- )} - {isLoading ? ( -

Loading..

- ) : ( -
- {images.map((image) => ( - - ))} -
- )} -
+
+ +
+ + setTerm(text)} /> +
+ {!images.length && !isLoading && ( +
+ No Images Found! +
+ )} + {isLoading ? ( +

Loading..

+ ) : ( +
+ {images.map((image) => ( + + ))} +
+ )}
+
+ ) }