pub fn use_notifications<'hook>() -> impl 'hook + Hook<Output = UseNotificationsHandle>Expand description
Hook to easily show notifications from any component
ยงNote
When used in function components and hooks, this hook is equivalent to:
pub fn use_notifications() -> UseNotificationsHandle {
/* implementation omitted */
}