Home / Function/ DrawerScrollableContent() — ui Function Reference

DrawerScrollableContent() — ui Function Reference

Architecture documentation for the DrawerScrollableContent() function in drawer-demo.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  c59f6e13_ef38_5a64_2e2b_559f16b1b2ac["DrawerScrollableContent()"]
  04594a08_934d_bf94_ee7c_beaa409cb7c4["drawer-demo.tsx"]
  c59f6e13_ef38_5a64_2e2b_559f16b1b2ac -->|defined in| 04594a08_934d_bf94_ee7c_beaa409cb7c4
  style c59f6e13_ef38_5a64_2e2b_559f16b1b2ac fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/app/(internal)/sink/components/drawer-demo.tsx lines 148–182

function DrawerScrollableContent() {
  return (
    <Drawer direction="right">
      <DrawerTrigger asChild>
        <Button variant="outline">Scrollable Content</Button>
      </DrawerTrigger>
      <DrawerContent>
        <DrawerHeader>
          <DrawerTitle>Move Goal</DrawerTitle>
          <DrawerDescription>Set your daily activity goal.</DrawerDescription>
        </DrawerHeader>
        <div className="overflow-y-auto px-4 text-sm">
          <h4 className="mb-4 text-lg leading-none font-medium">Lorem Ipsum</h4>
          {Array.from({ length: 10 }).map((_, index) => (
            <p key={index} className="mb-4 leading-normal">
              Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do
              eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
              enim ad minim veniam, quis nostrud exercitation ullamco laboris
              nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
              reprehenderit in voluptate velit esse cillum dolore eu fugiat
              nulla pariatur. Excepteur sint occaecat cupidatat non proident,
              sunt in culpa qui officia deserunt mollit anim id est laborum.
            </p>
          ))}
        </div>
        <DrawerFooter>
          <Button>Submit</Button>
          <DrawerClose asChild>
            <Button variant="outline">Cancel</Button>
          </DrawerClose>
        </DrawerFooter>
      </DrawerContent>
    </Drawer>
  )
}

Subdomains

Frequently Asked Questions

What does DrawerScrollableContent() do?
DrawerScrollableContent() is a function in the ui codebase, defined in apps/v4/app/(internal)/sink/components/drawer-demo.tsx.
Where is DrawerScrollableContent() defined?
DrawerScrollableContent() is defined in apps/v4/app/(internal)/sink/components/drawer-demo.tsx at line 148.

Analyze Your Own Codebase

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

Try Supermodel Free