pub fn create_signal<T: Clone + 'static>( initial_value: T, ) -> (impl Fn() -> T + Clone, impl Fn(T) + Clone)
A reactive signal that holds a value.