import React from 'react'; import PropTypes from 'prop-types'; import { Motion, spring } from 'react-motion'; import { FormattedMessage } from 'react-intl'; class UploadProgress extends React.PureComponent { static propTypes = { active: PropTypes.bool, progress: PropTypes.number }; render () { const { active, progress } = this.props; if (!active) { return null; } return (
{({ width }) =>
}
); } } export default UploadProgress;