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