MCPcopy Index your code
hub / github.com/code-hike/codehike / ResizablePanelGroup

Function ResizablePanelGroup

apps/web/components/ui/resizable.tsx:8–19  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>)

Source from the content-addressed store, hash-verified

6import { cn } from "@/lib/utils"
7
8const ResizablePanelGroup = ({
9 className,
10 ...props
11}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => (
12 <ResizablePrimitive.PanelGroup
13 className={cn(
14 "flex h-full w-full data-[panel-group-direction=vertical]:flex-col",
15 className
16 )}
17 {...props}
18 />
19)
20
21const ResizablePanel = ResizablePrimitive.Panel
22

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…