/** * * Video * */ import React from 'react'; import PropTypes from 'prop-types'; /* eslint-disable jsx-a11y/media-has-caption */ const Video = props => { const { height, src, width } = props.contentState.getEntity(props.entityKey).getData(); return ( ); }; Video.propTypes = { contentState: PropTypes.object.isRequired, entityKey: PropTypes.string.isRequired, }; export default Video;