use dioxus::prelude::*; fn main() { dioxus_desktop::launch(app); } fn app(cx: Scope) -> Element { cx.render(rsx! { generic_child::{} }) } fn generic_child(cx: Scope) -> Element { cx.render(rsx! { div {} }) }