From 8a9a9b9104eaae5e7c09c6fbd431043461e4e99b Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Wed, 24 Mar 2021 17:48:34 +0700 Subject: [PATCH] #23 removed lab head --- src/components/lab/LabHead/index.tsx | 32 ++++++++++++++++------------ 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/src/components/lab/LabHead/index.tsx b/src/components/lab/LabHead/index.tsx index 1f61048f..cce1ff2a 100644 --- a/src/components/lab/LabHead/index.tsx +++ b/src/components/lab/LabHead/index.tsx @@ -6,22 +6,26 @@ interface IProps { isLoading?: boolean; } -const LabHead: FC = ({ isLoading }) => ( -
-
- - Свежие - +const LabHead: FC = ({ isLoading }) => { + return null; - - Популярные - + return ( +
+
+ + Свежие + - - Важные - + + Популярные + + + + Важные + +
-
-); + ); +}; export { LabHead };