Created
October 8, 2025 16:20
-
-
Save ealmloff/045d5a45adac44fa796aa3c0387f4e5e to your computer and use it in GitHub Desktop.
A user-saved Dioxus Playground snippet.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! The simplest Dioxus app | |
| use dioxus::prelude::*; | |
| fn main() { | |
| dioxus::launch(App); | |
| } | |
| #[component] | |
| fn App() -> Element { | |
| rsx! { | |
| div { "Build what is this stuff!" } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment