Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const ContactRow = props => {
const {
className,
contact,
breakpoints: { isMobile },
onClick,
...rest
} = props
const phone = Contact.getPrimaryPhone(contact)
const email = Contact.getPrimaryEmail(contact)
const cozyUrl = Contact.getPrimaryCozy(contact)
return (
<div> onClick(contact)}
{...rest}
>
{!isMobile && }</div>