animated-toast-undo-demo
jolyui-ui/animated-toast-undo-demoFreeExample
jolyui/ui publishes no description for this item.
Install it
npx shadcn@latest add https://jolyui.dev/r/animated-toast-undo-demo.jsonSource
1"use client";23import { useState } from "react";4import { UndoToast } from "@/registry/default/ui/animated-toast";56export default function AnimatedToastUndoDemo() {7 const [showToast, setShowToast] = useState(false);8 const [message, setMessage] = useState("Item deleted");910 const deleteItem = () => {11 setMessage("Item deleted");12 setShowToast(true);13 };1415 const undoDelete = () => {16 setMessage("Deletion undone!");17 setTimeout(() => setMessage("Item deleted"), 2000);18 };1920 return (21 <div className="p-8">22 <p className="mb-4 text-muted-foreground">{message}</p>2324 <button25 onClick={deleteItem}26 className="rounded-md bg-red-500 px-4 py-2 text-white transition-colors hover:bg-red-600"27 >28 Delete Item29 </button>3031 <UndoToast32 open={showToast}33 onClose={() => setShowToast(false)}34 onUndo={undoDelete}35 message="Item deleted successfully"36 duration={5000}37 />38 </div>39 );40}
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 |
