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

11 lines
316 B
TypeScript

import * as React from 'react';
import { HelpV2 } from '../../components/HelpV2/HelpV2.js';
import type { LocalJSXCommandCall } from '../../types/command.js';
export const call: LocalJSXCommandCall = async (onDone, {
options: {
commands
}
}) => {
return <HelpV2 commands={commands} onClose={onDone} />;
};