/* @flow */ import { startConversation } from 'Actions/actions' import React from 'react' import { Trans } from 'react-i18next' import { connect } from 'react-redux' type Props = { startConversation: (?string) => void } const QuickLink = ({ startConversation }: Props) => ( <> ) export default connect( null, { startConversation } )(QuickLink)