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 };