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 DocumentationAtlas Changelog 1 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  8fb691ae_751b_424e_0ea3_64b539b1f58b["resizable-vertical.tsx"]
  14a9bcbf_eff5_6157_33d6_e1c299e1d3ed["resizable"]
  8fb691ae_751b_424e_0ea3_64b539b1f58b --> 14a9bcbf_eff5_6157_33d6_e1c299e1d3ed
  style 8fb691ae_751b_424e_0ea3_64b539b1f58b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import {
  ResizableHandle,
  ResizablePanel,
  ResizablePanelGroup,
} from "@/examples/base/ui/resizable"

export function ResizableVertical() {
  return (
    <ResizablePanelGroup
      orientation="vertical"
      className="min-h-[200px] max-w-sm rounded-lg border"
    >
      <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

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 DocumentationAtlas domain, Changelog subdomain.
What functions are defined in resizable-vertical.tsx?
resizable-vertical.tsx defines 1 function(s): ResizableVertical.
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/examples/base/resizable-vertical.tsx (domain: DocumentationAtlas, subdomain: Changelog, directory: apps/v4/examples/base).

Analyze Your Own Codebase

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

Try Supermodel Free