mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
24 lines
424 B
Rust
24 lines
424 B
Rust
use std::fmt::Display;
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
render! {
|
|
generic_child { data: 0 }
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq, Props)]
|
|
struct GenericChildProps<T: Display + PartialEq> {
|
|
data: T,
|
|
}
|
|
|
|
fn generic_child<T: Display + PartialEq>(cx: Scope<GenericChildProps<T>>) -> Element {
|
|
render! {
|
|
div { "{&cx.props.data}" }
|
|
}
|
|
}
|