import React from 'react'; import { Intent, Alert, H4 } from '@blueprintjs/core'; import isProduction from '../utils/isProduction'; import DeviceInfoCallout from './DeviceInfoCallout'; interface AllowConnectionForDeviceAlertProps { device: Device | null; isOpen: boolean; onCancel: () => void; onConfirm: () => void; } export default function AllowConnectionForDeviceAlert( props: AllowConnectionForDeviceAlertProps ) { const { device, isOpen, onCancel, onConfirm } = props; return (

Device is trying to connect, do you allow?

); }