import React, { FC } from 'react'; import styles from './styles.module.scss'; import { LabHeadItem } from '~/components/lab/LabHeadItem'; interface IProps { isLoading?: boolean; } const LabHead: FC = ({ isLoading }) => { return null; return (
Свежие Популярные Важные
); }; export { LabHead };