calendar-presets-demo
jolyui-ui/calendar-presets-demoFreeExample
jolyui/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by jolyui/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://jolyui.dev/r/calendar-presets-demo.jsonSource
1import { useState } from "react";2import { AnimatedCalendar } from "@/registry/default/ui/calender";34export default function CalendarPresetsDemo() {5 const [date, setDate] = useState<Date>();67 return (8 <div className="flex flex-col gap-3">9 <h3 className="font-medium text-sm">Calendar with Presets</h3>10 <AnimatedCalendar11 mode="range"12 onChange={(val) => setDate(val as Date | undefined)}13 showPresets14 placeholder="Select a date"15 />16 {date && (17 <p className="text-muted-foreground text-sm">18 Selected: {date.toLocaleDateString()}19 </p>20 )}21 </div>22 );23}
What it pulls in
Other registry items
Files it writes
More from jolyui/ui
All 199 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| ai-prompt-box-demoai-prompt-box-demo | jolyui/ui | Examples | Free | no deps | |
| ai-prompt-box-loading-demoai-prompt-box-loading-demo | jolyui/ui | Examples | Free | no deps | |
| animated-beam-bidirectional-demoanimated-beam-bidirectional-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-curved-demoanimated-beam-curved-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-demoanimated-beam-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-multiple-demoanimated-beam-multiple-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-table-basic-demoanimated-table-basic-demo | jolyui/ui | Examples | Free | no deps | |
| animated-table-column-demoanimated-table-column-demo | jolyui/ui | Examples | Free | no deps |
