Calendar
A date field component that allows users to enter and edit date.
June 2026
| Su | Mo | Tu | We | Th | Fr | Sa |
|---|---|---|---|---|---|---|
'use client'
import { useState } from 'react'
import { Calendar } from '@immit/ui/calendar'
export function CalendarDemo() {
const [date, setDate] = useState<Date | undefined>(new Date())
return (
<Calendar
mode="single"
selected={date}
onSelect={setDate}
className="bg-background rounded-md border"
/>
)
}