import React from 'react'; import { Welcome, Prompts } from '@ant-design/x'; const examplePrompts = [ { key: '1', label: '总结当前工作区', description: '分析项目结构和代码' }, { key: '2', label: '帮我写一个测试', description: '为指定模块生成测试用例' }, { key: '3', label: '查找 Bug', description: '检查代码中的潜在问题' }, ]; interface WelcomeScreenProps { onSelect: (prompt: string) => void; } const WelcomeScreen: React.FC = ({ onSelect }) => { return (
{ onSelect(String(info.data.label)); }} />
); }; export default WelcomeScreen;