import React, { useState } from 'react'; import { Button, Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap'; function ModalComponent(props) { return (
{props.modalTitle} {props.modalText} {' '}
); } export default ModalComponent;