pub fn onkeyup<__Marker>(
    _f: impl SuperInto<Callback<Event<KeyboardData>>, __Marker>,
) -> AttributeExpand description
The keyup event fires when the user releases any key being pressed in the currently focused element.
Event Data: KeyboardData
ยงExample
fn app() -> Element {
    rsx!(
        rect {
            onkeyup: |e| println!("Event: {e:?}")
        }
    )
}