import { Toaster as Sonner } from 'sonner'; /** * Renders the toast container. Use with `toast()` from this module for messages * with title, description, actions, and variants (success, error, warning). * * @example * toast("Event has been created", { * description: "Sunday, December 03, 2023 at 9:00 AM", * action: { label: "Undo", onClick: () => {} }, * }); * toast.success("Saved!"); * toast.error("Something went wrong"); * toast.warning("Please review"); */ export function Toaster() { return ; } export { toast } from 'sonner';