Home / File/ calendar-11.tsx — ui Source File

calendar-11.tsx — ui Source File

Architecture documentation for calendar-11.tsx, a tsx file in the ui codebase. 3 imports, 0 dependents.

File tsx ComponentRegistry ChartRegistry 3 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  79234d59_a0ac_2621_71b6_e8a5af1c7486["calendar-11.tsx"]
  1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"]
  79234d59_a0ac_2621_71b6_e8a5af1c7486 --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2
  bfc8708c_7488_3983_8998_32b793781735["react-day-picker"]
  79234d59_a0ac_2621_71b6_e8a5af1c7486 --> bfc8708c_7488_3983_8998_32b793781735
  5000e233_363d_e409_8b5c_7e80d38646fe["calendar"]
  79234d59_a0ac_2621_71b6_e8a5af1c7486 --> 5000e233_363d_e409_8b5c_7e80d38646fe
  style 79234d59_a0ac_2621_71b6_e8a5af1c7486 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"use client"

import * as React from "react"
import { type DateRange } from "react-day-picker"

import { Calendar } from "@/registry/new-york/ui/calendar"

export default function Calendar11() {
  const [dateRange, setDateRange] = React.useState<DateRange | undefined>({
    from: new Date(2025, 5, 17),
    to: new Date(2025, 5, 20),
  })

  return (
    <div className="flex min-w-0 flex-col gap-2">
      <Calendar
        mode="range"
        selected={dateRange}
        onSelect={setDateRange}
        numberOfMonths={2}
        startMonth={new Date(2025, 5, 1)}
        endMonth={new Date(2025, 6, 31)}
        disableNavigation
        className="rounded-lg border shadow-sm"
      />
      <div className="text-muted-foreground text-center text-xs">
        We are open in June and July only.
      </div>
    </div>
  )
}

Subdomains

Functions

Dependencies

  • calendar
  • react
  • react-day-picker

Frequently Asked Questions

What does calendar-11.tsx do?
calendar-11.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 calendar-11.tsx?
calendar-11.tsx defines 1 function(s): Calendar11.
What does calendar-11.tsx depend on?
calendar-11.tsx imports 3 module(s): calendar, react, react-day-picker.
Where is calendar-11.tsx in the architecture?
calendar-11.tsx is located at deprecated/www/__registry__/new-york/blocks/calendar-11.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/__registry__/new-york/blocks).

Analyze Your Own Codebase

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

Try Supermodel Free