@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines • 677 B
JavaScript
import ChatInputAreaParent from "./ChatInputArea";
import ChatInputActionBar from "./components/ChatInputActionBar";
import ChatInputAreaInner from "./components/ChatInputAreaInner";
import ChatSendButton from "./components/ChatSendButton";
var ChatInputArea = ChatInputAreaParent;
ChatInputArea.Inner = ChatInputAreaInner;
ChatInputArea.ActionBar = ChatInputActionBar;
ChatInputArea.SendButton = ChatSendButton;
export default ChatInputArea;
export { default as ChatInputActionBar } from "./components/ChatInputActionBar";
export { default as ChatInputAreaInner } from "./components/ChatInputAreaInner";
export { default as ChatSendButton } from "./components/ChatSendButton";