Function create_rw_signal

pub fn create_rw_signal<T>(value: T) -> RwSignal<T>
where T: Send + Sync + 'static,
👎Deprecated: This function is being removed to conform to Rust idioms. Please use RwSignal::new() instead.
Expand description

Creates a reactive signal with the getter and setter unified in one value.