Function patternfly_yew::core::use_breakpoint

source ·
pub fn use_breakpoint<'hook>(
) -> impl 'hook + Hook<Output = UseStateHandle<Breakpoint>>
Expand description

§Note

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

pub fn use_breakpoint() -> UseStateHandle<Breakpoint> {
    /* implementation omitted */
}