MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / SidebarContent

Function SidebarContent

src/components/ui/sidebar.tsx:371–383  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"div">)

Source from the content-addressed store, hash-verified

369}
370
371function SidebarContent({ className, ...props }: React.ComponentProps<"div">) {
372 return (
373 <div
374 data-slot="sidebar-content"
375 data-sidebar="content"
376 className={cn(
377 "flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden",
378 className
379 )}
380 {...props}
381 />
382 )
383}
384
385function SidebarGroup({ className, ...props }: React.ComponentProps<"div">) {
386 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected