dioxus/examples/hello_world.rs
2022-01-05 16:34:24 -05:00

12 lines
267 B
Rust

use dioxus::prelude::*;
use dioxus_desktop::tao::menu::MenuBar;
fn main() {
dioxus::desktop::launch_cfg(app, |c| c.with_window(|w| w.with_menu(MenuBar::default())));
}
fn app(cx: Scope) -> Element {
cx.render(rsx! (
div { "Hello, world!" }
))
}