Skip to content

Instantly share code, notes, and snippets.

View fagundescodes's full-sized avatar
🎯
Focusing

Raphael Fagundes fagundescodes

🎯
Focusing
View GitHub Profile
@fagundescodes
fagundescodes / main.rs
Created June 15, 2023 15:31
dioxus_test
use dioxus::prelude::*;
fn main() {
dioxus_desktop::launch(app);
}
fn app(cx: Scope) -> Element {
println!("rendered");
let val = cx.use_hook(|| 0);