Files
claude-code/src/commands/desktop/desktop.tsx
2026-03-31 23:03:47 +08:00

9 lines
345 B
TypeScript

import React from 'react';
import type { CommandResultDisplay } from '../../commands.js';
import { DesktopHandoff } from '../../components/DesktopHandoff.js';
export async function call(onDone: (result?: string, options?: {
display?: CommandResultDisplay;
}) => void): Promise<React.ReactNode> {
return <DesktopHandoff onDone={onDone} />;
}