From ccadb58979cc6659c228c4db58138e7c7a15580d Mon Sep 17 00:00:00 2001 From: filantrop Date: Thu, 8 Sep 2022 13:40:54 +0300 Subject: [PATCH] fix styles --- src/components/MainSection.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/MainSection.tsx b/src/components/MainSection.tsx index 21ac885..d0b250c 100644 --- a/src/components/MainSection.tsx +++ b/src/components/MainSection.tsx @@ -34,7 +34,7 @@ export default function MainSection({ const [query, setQuery] = useState(""); // Query const onChange = (query: string) => { - //console.log(query) + console.log(query) setQuery(query); setHints(hintsValues); }; @@ -49,11 +49,11 @@ export default function MainSection({ }; //empty items message const IsEmptyItems = () => { - return

Nothing Found

; + return

Nothing Found

; }; return ( -
+
Scientific Library with Free Access
@@ -99,6 +99,6 @@ export default function MainSection({ Advanced Search
- + ); }