Skip to content

Instantly share code, notes, and snippets.

@ealmloff
Created October 8, 2025 16:38
Show Gist options
  • Select an option

  • Save ealmloff/1c946f28eac664ac3374163e1bcc7cbf to your computer and use it in GitHub Desktop.

Select an option

Save ealmloff/1c946f28eac664ac3374163e1bcc7cbf to your computer and use it in GitHub Desktop.
A user-saved Dioxus Playground snippet.
//! The simplest Dioxus app
use dioxus::prelude::*;
fn main() {
dioxus::launch(App);
}
#[component]
fn App() -> Element {
rsx! {
div { "Build it!" }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment