/** * * 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 (
); } } InputFileWithErrors.defaultProps = {}; InputFileWithErrors.propTypes = {}; export default InputFileWithErrors;