animated-toast-notification-demo
jolyui-ui/animated-toast-notification-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/animated-toast-notification-demo.jsonSource
1"use client";23import { useState } from "react";4import { NotificationToast } from "@/registry/default/ui/animated-toast";56export default function AnimatedToastNotificationDemo() {7 const [showToast, setShowToast] = useState(false);89 const showNotification = () => {10 setShowToast(true);11 };1213 return (14 <div className="p-8">15 <button16 onClick={showNotification}17 className="rounded-md bg-blue-500 px-4 py-2 text-white transition-colors hover:bg-blue-600"18 >19 Show Notification20 </button>2122 <NotificationToast23 open={showToast}24 onClose={() => setShowToast(false)}25 title="New Message"26 message="You have received a new message from John Doe. Check it out!"27 avatar="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=40&h=40&fit=crop&crop=face"28 time="2 min ago"29 />30 </div>31 );32}
What it pulls in
npm packages
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 |
