import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; export default class ModalContent extends PureComponent { static propTypes = { title: PropTypes.string, description: PropTypes.string, }; render() { const { title, description } = this.props; return (