UNPKG

@pdftron/webviewer-react-toolkit

Version:

A React component library for integrating with PDFTron WebViewer API.

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