dioxus-websocket-hooks

Dioxus hooks for websocket connections

```rust fn app(cx: Scope) -> Element { useinitatom_root(&cx);

use_ws_context_provider_json(&cx, "wss://echo.websocket.events", move |msg| {
    // Handle incoming ws message, e.g. store it in shared state
});

...

}

fn ExampleComponent(cx: Scope) -> Element { let ws = usewscontext(&cx);

cx.render(rsx! (
    button { onclick: move |_| ws.send_json(&"hello"), "Submit" }
))

} ```

Examples

See cargo examples

Samples make use of fermi for state management.