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