/* @flow */ 'use strict'; import React from 'react'; const Confirmation = (props): any => { const { onConfirmation, onConfirmationCancel } = props.modalActions; return (

Confirm

); } export default Confirmation;