import React from 'react'; import { defineMessages, injectIntl } from 'react-intl'; import Styled from './styles'; const intlMessages = defineMessages({ dropZoneLabel: { id: 'app.video.dropZoneLabel', description: 'message showing where the user can drop cameraDock', }, }); const DropArea = ({ id, dataTest, style, intl, }) => ( <> {intl.formatMessage(intlMessages.dropZoneLabel)} ); export default injectIntl(DropArea);