mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-12-19 19:07:44 +00:00
06dce4729b
- Updated references panel - Use subtle coloring for chat cards - Chat streaming with train of thought - Side panel with limited sessions, expandable - Manage conversation file filters easily from the side panel - Updated nav menu, easily go to agents/automations/profile - Upload data from the chat UI (on click attachment icon) - Slash command pop-up menu, scrollable and selectable - Dark mode-enabled - Mostly mobile friendly
11 lines
329 B
TypeScript
11 lines
329 B
TypeScript
"use client"
|
|
|
|
import * as CollapsiblePrimitive from "@radix-ui/react-collapsible"
|
|
|
|
const Collapsible = CollapsiblePrimitive.Root
|
|
|
|
const CollapsibleTrigger = CollapsiblePrimitive.CollapsibleTrigger
|
|
|
|
const CollapsibleContent = CollapsiblePrimitive.CollapsibleContent
|
|
|
|
export { Collapsible, CollapsibleTrigger, CollapsibleContent }
|