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