/* @flow */ import { startConversation } from 'Actions/actions' import withLanguage from 'Components/utils/withLanguage' import { compose } from 'ramda' 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 compose( withLanguage, connect( (state, props) => ({ key: props.language }), { startConversation } ) )(QuickLink)