UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

7 lines 308 B
import { toast } from "react-hot-toast"; import ToastRoot from "./ToastRoot"; const createToast = (content, options) => { toast(content, options); }; const createToastPromise = (content, messages, options) => toast.promise(content, messages, options); export { ToastRoot, createToast, createToastPromise };