Home / File/ resizable-vertical.tsx — ui Source File

resizable-vertical.tsx — ui Source File

Architecture documentation for resizable-vertical.tsx, a tsx file in the ui codebase. 1 imports, 0 dependents.

File tsx ComponentRegistry ChartRegistry 1 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  2a7daec3_a266_3127_f648_3e3c473beb0d["resizable-vertical.tsx"]
  852e6756_fc4e_e7e0_8729_0889c797a1e2["resizable"]
  2a7daec3_a266_3127_f648_3e3c473beb0d --> 852e6756_fc4e_e7e0_8729_0889c797a1e2
  style 2a7daec3_a266_3127_f648_3e3c473beb0d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import {
  ResizableHandle,
  ResizablePanel,
  ResizablePanelGroup,
} from "@/registry/new-york-v4/ui/resizable"

export default function ResizableDemo() {
  return (
    <ResizablePanelGroup
      orientation="vertical"
      className="min-h-[200px] max-w-md rounded-lg border md:min-w-[450px]"
    >
      <ResizablePanel defaultSize="25%">
        <div className="flex h-full items-center justify-center p-6">
          <span className="font-semibold">Header</span>
        </div>
      </ResizablePanel>
      <ResizableHandle />
      <ResizablePanel defaultSize="75%">
        <div className="flex h-full items-center justify-center p-6">
          <span className="font-semibold">Content</span>
        </div>
      </ResizablePanel>
    </ResizablePanelGroup>
  )
}

Subdomains

Functions

Dependencies

  • resizable

Frequently Asked Questions

What does resizable-vertical.tsx do?
resizable-vertical.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, ChartRegistry subdomain.
What functions are defined in resizable-vertical.tsx?
resizable-vertical.tsx defines 1 function(s): ResizableDemo.
What does resizable-vertical.tsx depend on?
resizable-vertical.tsx imports 1 module(s): resizable.
Where is resizable-vertical.tsx in the architecture?
resizable-vertical.tsx is located at apps/v4/registry/new-york-v4/examples/resizable-vertical.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/new-york-v4/examples).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free