30 lines
549 B
JavaScript
Raw Normal View History

/**
*
* InputFileWithErrors
*
*/
import React from 'react';
import PropTypes from 'prop-types';
import cn from 'classnames';
// Design
import Label from 'components/Label';
import InputDescription from 'components/InputDescription';
import InputFile from 'components/InputFile';
class InputFileWithErrors extends React.Component {
// TODO handle errors lifecycle
render() {
return (
<div>
</div>
);
}
}
InputFileWithErrors.defaultProps = {};
InputFileWithErrors.propTypes = {};
export default InputFileWithErrors;