pub fn use_reactive<T: 'static + Clone + PartialEq>(value: &T) -> State<T>
Allows converting a &T into a State<T> so that we can pass this value around without cloning it multiple times.
&T
State<T>