import React from 'react'; import { Modal } from 'react-bootstrap'; import './App.css'; class ModalBox extends React.Component { render() { return ( {this.props.title} {this.props.data} ); } } export default ModalBox;