MCPcopy Create free account
hub / github.com/AntiHub-Project/AntiHub / QueueList

Function QueueList

components/ai-elements/queue.tsx:184–194  ·  view source on GitHub ↗
({
  children,
  className,
  ...props
}: QueueListProps)

Source from the content-addressed store, hash-verified

182export type QueueListProps = ComponentProps<typeof ScrollArea>;
183
184export const QueueList = ({
185 children,
186 className,
187 ...props
188}: QueueListProps) => (
189 <ScrollArea className={cn("-mb-1 mt-2", className)} {...props}>
190 <div className="max-h-40 pr-4">
191 <ul>{children}</ul>
192 </div>
193 </ScrollArea>
194);
195
196// QueueSection - collapsible section container
197export type QueueSectionProps = ComponentProps<typeof Collapsible>;

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected