mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-21 15:55:50 +00:00
7 lines
316 B
TypeScript
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" />;
|
|
};
|