1 2 3 4 5 6 7 8 9
use super::props::TransitionProps; use dioxus::prelude::*; #[component] pub fn DxcTransition(props: TransitionProps) -> Element { rsx! { {props.children} } }