Function
QueueList
({
children,
className,
...props
}: QueueListProps)
Source from the content-addressed store, hash-verified
| 182 | export type QueueListProps = ComponentProps<typeof ScrollArea>; |
| 183 | |
| 184 | export 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 |
| 197 | export type QueueSectionProps = ComponentProps<typeof Collapsible>; |
Callers
nothing calls this directly
Tested by
no test coverage detected