import React from 'react' import { Box, Text } from 'ink' import { Surface } from '../../../../ui/Surface.js' import { Select } from '../../../../ui/Select.js' import { theme } from '../../../../ui/theme.js' type OperationCompleteScreenProps = { message: string onReturn: () => void } export const OperationCompleteScreen: React.FC = ({ message, onReturn }) => ( ↵ returns to menu} > {message} options={[{ value: 'menu', label: 'Return to Menu' }]} onSubmit={onReturn} onCancel={onReturn} /> )