Function patternfly_yew::components::nav::use_expandable

source ·
pub fn use_expandable<'hook>() -> impl 'hook + Hook<Output = Option<Expandable>>
Expand description

Access a wrapping Expandable content.

§Note

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

pub fn use_expandable() -> Option<Expandable> {
    /* implementation omitted */
}