UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

23 lines (16 loc) 444 B
/** * * Image * */ import React from 'react'; import PropTypes from 'prop-types'; const Image = props => { const { alt, height, src, width } = props.contentState.getEntity(props.entityKey).getData(); return <img alt={alt} src={src} height={height} width={width} style={{ maxWidth: '100%' }} />; }; Image.propTypes = { contentState: PropTypes.object.isRequired, entityKey: PropTypes.string.isRequired, }; export default Image;