12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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}!" }
- })
- }
|