import * as React from "react"; export interface ConfirmationPopupProps { confirm: () => void; cancel: () => void; text: string; confirmText: string; cancelText: string; } export default class ConfirmationPopup extends React.Component { render() { return (

{ this.props.text }

); } }