Implement Into<RwSignal<T> for StoreField<T>
**Is your feature request related to a problem? Please describe.**
I want to display some text fields mapped to a store, and currently have to use `Effect::watch` to map changes from them back to the store.
**Describe the solution you'd like**
I want to be able to just use `RwSignal::from(store.field())`.
**Describe alternatives you've considered**
Manually doing it with `Effect::watch(move || rw_signal.get(), move |value, _, _| { store.field().set(value) }, false)`;
0 条评论