mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
28 lines
737 B
Rust
28 lines
737 B
Rust
//! This example demonstrates how to create a generic component in Dioxus.
|
|
//!
|
|
//! Generic components can be useful when you want to create a component that renders differently depending on the type
|
|
//! of data it receives. In this particular example, we're just using a type that implements `Display` and `PartialEq`,
|
|
|
|
use dioxus::prelude::*;
|
|
use std::fmt::Display;
|
|
|
|
fn main() {
|
|
launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
rsx! {
|
|
generic_child { data: 0 }
|
|
}
|
|
}
|
|
|
|
#[derive(PartialEq, Props, Clone)]
|
|
struct GenericChildProps<T: Display + PartialEq + Clone + 'static> {
|
|
data: T,
|
|
}
|
|
|
|
fn generic_child<T: Display + PartialEq + Clone>(props: GenericChildProps<T>) -> Element {
|
|
rsx! {
|
|
div { "{props.data}" }
|
|
}
|
|
}
|