calendar-03.tsx — ui Source File
Architecture documentation for calendar-03.tsx, a tsx file in the ui codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 92bf93ee_b9c3_d489_90d7_cbdd8f3309bc["calendar-03.tsx"] 1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"] 92bf93ee_b9c3_d489_90d7_cbdd8f3309bc --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2 9296b496_7dcb_ebca_2184_14782807983b["calendar"] 92bf93ee_b9c3_d489_90d7_cbdd8f3309bc --> 9296b496_7dcb_ebca_2184_14782807983b style 92bf93ee_b9c3_d489_90d7_cbdd8f3309bc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
"use client"
import * as React from "react"
import { Calendar } from "@/registry/default/ui/calendar"
export default function Calendar03() {
const [dates, setDates] = React.useState<Date[]>([
new Date(2025, 5, 12),
new Date(2025, 6, 24),
])
return (
<Calendar
mode="multiple"
numberOfMonths={2}
defaultMonth={dates[0]}
required
selected={dates}
onSelect={setDates}
max={5}
className="rounded-lg border shadow-sm"
/>
)
}
Domain
Subdomains
Functions
Dependencies
- calendar
- react
Source
Frequently Asked Questions
What does calendar-03.tsx do?
calendar-03.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-03.tsx?
calendar-03.tsx defines 1 function(s): Calendar03.
What does calendar-03.tsx depend on?
calendar-03.tsx imports 2 module(s): calendar, react.
Where is calendar-03.tsx in the architecture?
calendar-03.tsx is located at deprecated/www/__registry__/default/blocks/calendar-03.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/__registry__/default/blocks).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free