ソースを参照

Merge branch 'breaking' of https://github.com/Demonthos/dioxus into breaking

Evan Almloff 1 年間 前
コミット
a5e61b0765
1 ファイル変更0 行追加4 行削除
  1. 0 4
      examples/signals.rs

+ 0 - 4
examples/signals.rs

@@ -18,11 +18,7 @@ fn app() -> Element {
                 count += 1;
             }
 
-            let val = running.read();
-
             tokio::time::sleep(Duration::from_millis(400)).await;
-
-            println!("Running: {}", *val);
         }
     });