mirror of
https://github.com/strapi/strapi.git
synced 2025-09-27 09:25:46 +00:00
24 lines
311 B
JavaScript
24 lines
311 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
*
|
||
|
* ImgPreview
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import cn from 'classnames';
|
||
|
|
||
|
import styles from './styles.scss';
|
||
|
|
||
|
function ImgPreview(props) {
|
||
|
return (
|
||
|
<div></div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
ImgPreview.defaultProps = {};
|
||
|
ImgPreview.propTypes = {};
|
||
|
|
||
|
export default ImgPreview;
|