Última atividade 1729152537

knox revisou este gist 1729152536. Ir para a revisão

1 file changed, 9 insertions

Dioxus-1.rs(arquivo criado)

@@ -0,0 +1,9 @@
1 + fn app() -> Element {
2 + let mut count = use_signal(|| 0);
3 +
4 + rsx! {
5 + h1 { "High-Five counter: {count}" }
6 + button { onclick: move |_| count += 1, "Up high!" }
7 + button { onclick: move |_| count -= 1, "Down low!" }
8 + }
9 + }
Próximo Anterior