mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-27 07:18:17 +01:00
Update Contacts.js
This commit is contained in:
parent
3b6b3649d2
commit
368217d428
@ -13,7 +13,7 @@ type Props = {
|
|||||||
const Contacts = ({ contacts }: Props) => (
|
const Contacts = ({ contacts }: Props) => (
|
||||||
<div className={styles['contacts']}>
|
<div className={styles['contacts']}>
|
||||||
<ul className={styles['contacts__list']}>
|
<ul className={styles['contacts__list']}>
|
||||||
{Object.keys(contacts).map((name) => !contacts[name] ? null : (
|
{Object.keys(contacts).map((name) => (!contacts[name] ? null : (
|
||||||
<li className={styles['contacts__list-item']} key={name}>
|
<li className={styles['contacts__list-item']} key={name}>
|
||||||
<a
|
<a
|
||||||
className={styles['contacts__list-item-link']}
|
className={styles['contacts__list-item-link']}
|
||||||
@ -24,7 +24,7 @@ const Contacts = ({ contacts }: Props) => (
|
|||||||
<Icon icon={getIcon(name)} />
|
<Icon icon={getIcon(name)} />
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
))}
|
)))}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user