mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
13 lines
231 B
Rust
13 lines
231 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! { generic_child::<i32>{} })
|
|
}
|
|
|
|
fn generic_child<T>(cx: Scope) -> Element {
|
|
cx.render(rsx! { div {} })
|
|
}
|