pub fn use_keyboard<'hook>(
options: KeyboardNavigationOptions,
) -> impl 'hook + Hook<Output = NodeRef>
Available on crate feature
yew
only.Expand description
§Note
When used in function components and hooks, this hook is equivalent to:
pub fn use_keyboard(options: KeyboardNavigationOptions) -> NodeRef {
/* implementation omitted */
}