dioxus stuff

This commit is contained in:
2024-05-21 21:13:19 -04:00
parent a04238dbcd
commit 7fb6e95c79
8 changed files with 2641 additions and 28 deletions
+11
View File
@@ -0,0 +1,11 @@
#![allow(non_snake_case)]
use dioxus::prelude::*;
pub fn app() -> Element {
rsx!(
div {
"Hello, World!"
}
)
}