frontend / context/toast/ToastContext / useToast
Function: useToast()
useToast():
ToastFn
Defined in: src/context/toast/ToastContext.ts:61
Access the toast function provided by AppShell or AppPublicShell.
Returns
Toast function to display notifications with optional severity
Throws
Error if used outside of a matching provider
Example
const toast = useToast();
toast('Success!', 'success');
toast('Warning!', 'warning');