UNPKG

@assistant-ui/react

Version:

Typescript/React library for AI Chat

18 lines 780 B
// src/primitives/thread/index.ts import { ThreadPrimitiveRoot } from "./ThreadRoot.mjs"; import { ThreadPrimitiveEmpty } from "./ThreadEmpty.mjs"; import { ThreadPrimitiveIf } from "./ThreadIf.mjs"; import { ThreadPrimitiveViewport } from "./ThreadViewport.mjs"; import { ThreadPrimitiveMessages } from "./ThreadMessages.mjs"; import { ThreadPrimitiveScrollToBottom } from "./ThreadScrollToBottom.mjs"; import { ThreadPrimitiveSuggestion } from "./ThreadSuggestion.mjs"; export { ThreadPrimitiveEmpty as Empty, ThreadPrimitiveIf as If, ThreadPrimitiveMessages as Messages, ThreadPrimitiveRoot as Root, ThreadPrimitiveScrollToBottom as ScrollToBottom, ThreadPrimitiveSuggestion as Suggestion, ThreadPrimitiveViewport as Viewport }; //# sourceMappingURL=index.mjs.map