/* @flow */ import React from 'react'; import type { Props } from './index'; const Confirmation = (props: Props) => { if (!props.modal.opened) return null; const { device } = props.modal; return (

Complete the action on { device.label } device

); }; export default Confirmation;