Trying to call SDK from Yew component:
wasm_bindgen_futures::spawn_local(async move {
let users = client.get_users().await.unwrap();
});
Compilation fails with Client not wasm-bindgen compatible. Is there a recommended approach for SDK usage in WASM/Yew projects?