mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
44 lines
825 B
Rust
44 lines
825 B
Rust
use dioxus::prelude::*;
|
|
use dioxus_core as dioxus;
|
|
use dioxus_core_macro::*;
|
|
use dioxus_html as dioxus_elements;
|
|
|
|
fn main() {
|
|
let _ = VirtualDom::new(Parent);
|
|
}
|
|
|
|
fn Parent(cx: Context, props: &()) -> Element {
|
|
let value = cx.use_hook(|_| String::new(), |f| &*f);
|
|
|
|
cx.render(rsx! {
|
|
div {
|
|
Child { name: value }
|
|
Fragment { "asd" }
|
|
}
|
|
})
|
|
}
|
|
|
|
#[derive(Props)]
|
|
struct ChildProps<'a> {
|
|
name: &'a str,
|
|
}
|
|
|
|
fn Child(cx: Context, props: &ChildProps) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
h1 { "it's nested" }
|
|
Child2 { name: props.name }
|
|
}
|
|
})
|
|
}
|
|
|
|
#[derive(Props)]
|
|
struct Grandchild<'a> {
|
|
name: &'a str,
|
|
}
|
|
|
|
fn Child2(cx: Context, props: &Grandchild) -> Element {
|
|
cx.render(rsx! {
|
|
div { "Hello {props.name}!" }
|
|
})
|
|
}
|