wasm_react/hooks/
use_id.rs

1use crate::react_bindings;
2
3/// Returns a unique component ID which is stable across server and client.
4pub fn use_id() -> String {
5  react_bindings::use_id()
6}