Calendar11() — ui Function Reference
Architecture documentation for the Calendar11() function in calendar-11.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD bb50971e_2f12_d3bf_5c6c_cf157c143b96["Calendar11()"] 399c0ddf_640b_5b48_b652_7baeb6c304a9["calendar-11.tsx"] bb50971e_2f12_d3bf_5c6c_cf157c143b96 -->|defined in| 399c0ddf_640b_5b48_b652_7baeb6c304a9 style bb50971e_2f12_d3bf_5c6c_cf157c143b96 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
deprecated/www/registry/new-york/blocks/calendar-11.tsx lines 8–31
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>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does Calendar11() do?
Calendar11() is a function in the ui codebase, defined in deprecated/www/registry/new-york/blocks/calendar-11.tsx.
Where is Calendar11() defined?
Calendar11() is defined in deprecated/www/registry/new-york/blocks/calendar-11.tsx at line 8.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free