From d3ea23247fd208741ceaea57538daaff0be997a9 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sun, 9 Jul 2023 19:40:14 +0200 Subject: [PATCH] xilem_html: Re-export AnyView from the crate root --- crates/xilem_html/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/xilem_html/src/lib.rs b/crates/xilem_html/src/lib.rs index 2af5c39b..2a984c8d 100644 --- a/crates/xilem_html/src/lib.rs +++ b/crates/xilem_html/src/lib.rs @@ -27,7 +27,7 @@ pub use element::{element, Element, ElementState}; #[cfg(feature = "typed")] pub use event::events; pub use event::{on_event, Action, Event, OnEvent, OnEventState, OptionalAction}; -pub use view::{Adapt, AdaptThunk, Either, Pod, View, ViewMarker, ViewSequence}; +pub use view::{Adapt, AdaptThunk, AnyView, Either, Pod, View, ViewMarker, ViewSequence}; #[cfg(feature = "typed")] pub use view_ext::ViewExt;