UNPKG

@pdftron/webviewer-react-toolkit

Version:

A React component library for integrating with PDFTron WebViewer API.

9 lines (8 loc) 229 B
import { createContext, useContext } from 'react'; export var ToastContext = createContext({}); /** * Returns the toast context object for managing toasts. */ export function useToast() { return useContext(ToastContext); }