import PureRenderMixin from 'react-addons-pure-render-mixin'; import { Motion, spring } from 'react-motion'; import { FormattedMessage } from 'react-intl'; const UploadArea = React.createClass({ propTypes: { active: React.PropTypes.bool }, mixins: [PureRenderMixin], render () { const { active } = this.props; return ( {({ backgroundOpacity, backgroundScale }) =>
} ); } }); export default UploadArea;