mirror of
https://github.com/strapi/strapi.git
synced 2025-09-29 10:22:36 +00:00
30 lines
549 B
JavaScript
30 lines
549 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* 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;
|