codev / src /commands /config /config.tsx
chenbhao's picture
feat: voice stt+tts just first have voice
6db367d
Raw
History Blame Contribute Delete
312 Bytes
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" />
}