1use dioxus::prelude::*; 2 3#[derive(Props, PartialEq, Clone)] 4pub struct TextProps { 5 text: String, 6} 7 8#[component] 9pub fn Text(props: TextProps) -> Element { 10 rsx! { 11 "{props.text}" 12 } 13}