12 lines
404 B
JavaScript
12 lines
404 B
JavaScript
// src/components/ChatBot/index.js
|
|
// 聊天机器人组件统一导出
|
|
|
|
export { ChatInterface } from './ChatInterface';
|
|
export { ChatInterfaceV2 } from './ChatInterfaceV2';
|
|
export { MessageBubble } from './MessageBubble';
|
|
export { PlanCard } from './PlanCard';
|
|
export { StepResultCard } from './StepResultCard';
|
|
|
|
// 默认导出新版本
|
|
export { ChatInterfaceV2 as default } from './ChatInterfaceV2';
|