feat: impl IntoFragment for AnyView (#4087)

This commit is contained in:
Greg Johnston
2025-06-16 20:00:32 -04:00
committed by GitHub
parent 99117f496f
commit 3f48b77256

View File

@@ -53,6 +53,12 @@ where
}
}
impl IntoFragment for AnyView {
fn into_fragment(self) -> Fragment {
Fragment::new(vec![self])
}
}
impl<T> IntoFragment for Vec<T>
where
T: IntoAny,