// Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause import { useRawToasterForHook } from "src/ui/toaster" /** * useToaster provides a mechanism to display toasts. It returns an object with * methods to show, dismiss, or clear all toasts: * * const toastKey = toaster.show({ message: "Hello world" }) * toaster.dismiss(toastKey) * toaster.clear() * */ const useToaster = useRawToasterForHook export default useToaster