diff --git a/src/components/Sidebar/Contacts/Contacts.js b/src/components/Sidebar/Contacts/Contacts.js index 3e07d78..32b76f4 100644 --- a/src/components/Sidebar/Contacts/Contacts.js +++ b/src/components/Sidebar/Contacts/Contacts.js @@ -1,9 +1,16 @@ +// @flow import React from 'react'; import { getContactHref, getIcon } from '../../../utils'; import Icon from '../../Icon'; import styles from './Contacts.module.scss'; -const Contacts = ({ contacts }) => ( +type Props = {| + +contacts: { + [string]: string, + }, +|}; + +const Contacts = ({ contacts }: Props) => (