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 */
}