pub fn simple_node<S, F, Fut>(f: F) -> impl Node<S>where S: State, F: Fn(S) -> Fut + Send + Sync + 'static, Fut: Future<Output = Result<S>> + Send + 'static,
Helper to create a node that doesn’t use config