This is unreleased documentation for Yew Next version.
For up-to-date documentation, see the latest version on docs.rs.

Function use_navigator

Source
pub fn use_navigator<'hook>() -> impl 'hook + Hook<Output = Option<Navigator>>
Expand description

A hook to access the Navigator.

ยงNote

When used in function components and hooks, this hook is equivalent to:

/// A hook to access the [`Navigator`].
pub fn use_navigator() -> Option<Navigator> {
    /* implementation omitted */
}