Typedefs
[ToastState] : Object
The current state of the toast store.
[ToastContextProvider]
A context provider that provides the toast state object and a dispatch function to toast functionality consumers.
[useToastContext] ⇒ Array.<Object>
A hook that provides access to the toast state and dispatch. Any component using this hook must be a child of a ToastContextProvider.
The current state of the toast store.
Properties
MapA context provider that provides the toast state object and a dispatch function to toast functionality consumers.
A hook that provides access to the toast state and dispatch. Any component using this hook must be a child of a ToastContextProvider.
Returns: Array.<Object> — An array containing the state and dispatch function: [ToastState, function]
Example
const [toastState, dispatch] = useToastState();
Source Code: pwa-studio/packages/peregrine/lib/Toasts/useToastContext.js