mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 06:15:51 +00:00
9 lines
345 B
TypeScript
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} />;
|
|
}
|