calendar-time-demo
jolyui-ui/calendar-time-demoFreeExample
jolyui/ui publishes no description for this item.
Install it
npx shadcn@latest add https://jolyui.dev/r/calendar-time-demo.jsonSource
1import { useState } from "react";2import { AnimatedCalendar } from "@/registry/default/ui/calender";34export default function CalendarTimeDemo() {5 const [dateTime, setDateTime] = useState<Date>();67 return (8 <div className="flex flex-col gap-3">9 <h3 className="font-medium text-sm">Date & Time Selection</h3>10 <AnimatedCalendar11 mode="single"12 value={dateTime}13 onChange={setDateTime}14 showTime15 placeholder="Select date and time"16 />17 {dateTime && (18 <p className="text-muted-foreground text-sm">19 Selected: {dateTime.toLocaleString()}20 </p>21 )}22 </div>23 );24}
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 |
