/* eslint-disable react/jsx-curly-brace-presence */ /* eslint-disable react/destructuring-assignment */ import React from 'react'; import { Text, Card } from '@blueprintjs/core'; interface ConfirmStepProps { device: Device | null; } export default function ConfirmStep(props: ConfirmStepProps) { return ( <>
{`Check if all is OK and click "Confirm"`}
{`Device: ${props.device?.deviceType}`} {`Device IP: ${props.device?.deviceIp}`} {`Device OS: ${props.device?.deviceOs}`} {`Session ID: ${props.device?.sessionId}`}
{`Click "Back" if you need to change something`}
); }