import PropTypes from 'prop-types'; import { Motion, spring } from 'react-motion'; import { FormattedMessage } from 'react-intl'; class UploadArea extends React.PureComponent { render () { const { active } = this.props; return ( {({ backgroundOpacity, backgroundScale }) =>
} ); } } UploadArea.propTypes = { active: PropTypes.bool }; export default UploadArea;