mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-30 14:33:08 +00:00
44 lines
787 B
Rust
44 lines
787 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, _): Scope<()>) -> Element {
|
||
|
let value = cx.use_hook(|_| String::new(), |f| &*f);
|
||
|
|
||
|
cx.render(rsx! {
|
||
|
div {
|
||
|
Child { name: value }
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
#[derive(Props)]
|
||
|
struct ChildProps<'a> {
|
||
|
name: &'a str,
|
||
|
}
|
||
|
|
||
|
fn Child((cx, props): Scope<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, props): Scope<Grandchild>) -> Element {
|
||
|
cx.render(rsx! {
|
||
|
div { "Hello {props.name}!" }
|
||
|
})
|
||
|
}
|