pub fn WrapAsync<F>(f: impl FnOnce() -> F + 'static) -> Viewwhere F: Future<Output = View>,
Convert an async component to a regular sync component. Also wraps the async component inside a suspense scope so that content is properly suspended.