import React from 'react' import PropTypes from 'prop-types' import { Modal, Button, Icon, Column, Text } from '../ui' export class MessageDialog extends React.Component { static propTypes = { open: PropTypes.bool, title: PropTypes.string.isRequired, message: PropTypes.string.isRequired, onDismiss: PropTypes.func } render() { return ( {this.props.title} {this.props.message} ) } }