mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
#23 removed lab head
This commit is contained in:
parent
462c27ee89
commit
8a9a9b9104
1 changed files with 18 additions and 14 deletions
|
@ -6,22 +6,26 @@ interface IProps {
|
|||
isLoading?: boolean;
|
||||
}
|
||||
|
||||
const LabHead: FC<IProps> = ({ isLoading }) => (
|
||||
<div className={styles.wrap}>
|
||||
<div className={styles.group}>
|
||||
<LabHeadItem icon="recent" active isLoading={isLoading}>
|
||||
Свежие
|
||||
</LabHeadItem>
|
||||
const LabHead: FC<IProps> = ({ isLoading }) => {
|
||||
return null;
|
||||
|
||||
<LabHeadItem icon="hot" isLoading={isLoading}>
|
||||
Популярные
|
||||
</LabHeadItem>
|
||||
return (
|
||||
<div className={styles.wrap}>
|
||||
<div className={styles.group}>
|
||||
<LabHeadItem icon="recent" active isLoading={isLoading}>
|
||||
Свежие
|
||||
</LabHeadItem>
|
||||
|
||||
<LabHeadItem icon="star_full" isLoading={isLoading}>
|
||||
Важные
|
||||
</LabHeadItem>
|
||||
<LabHeadItem icon="hot" isLoading={isLoading}>
|
||||
Популярные
|
||||
</LabHeadItem>
|
||||
|
||||
<LabHeadItem icon="star_full" isLoading={isLoading}>
|
||||
Важные
|
||||
</LabHeadItem>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
);
|
||||
};
|
||||
|
||||
export { LabHead };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue