Calendar component is built on top of React DayPicker
Components
Calendar
The
You can see more details about then implementation at shadcn’s documentation
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Calendar component is built on top of React DayPicker
import { Calendar } from "@turbostack/ui"
const [date, setDate] = React.useState<Date | undefined>(new Date())
return (
<Calendar
mode="single"
selected={date}
onSelect={setDate}
className="rounded-md border"
/>
)