import React from 'react'; import PropTypes from 'prop-types'; import { Modal, ModalBody, } from 'reactstrap'; const PagePresentationModal = (props) => { function closeModalHandler() { if (props.onClose === null) { return; } props.onClose(); } return (