mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 22:35:51 +00:00
8 lines
339 B
TypeScript
8 lines
339 B
TypeScript
import * as React from 'react';
|
|
import type { LocalJSXCommandOnDone } from '../../types/command.js';
|
|
import { PluginSettings } from './PluginSettings.js';
|
|
|
|
export async function call(onDone: LocalJSXCommandOnDone, _context: unknown, args?: string): Promise<React.ReactNode> {
|
|
return <PluginSettings onComplete={onDone} args={args} />;
|
|
}
|