Преглед изворни кода

example: remove unncessary cfg

Jonathan Kelley пре 3 година
родитељ
комит
cd5242bfc4
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      examples/hello_world.rs

+ 1 - 1
examples/hello_world.rs

@@ -2,7 +2,7 @@ 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())));
+    dioxus::desktop::launch(app);
 }
 
 fn app(cx: Scope) -> Element {