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

7 lines
316 B
TypeScript

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