mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-22 20:23:09 +00:00
fix RuntimeError message formatting
This commit is contained in:
parent
d07e81005f
commit
9479d2376d
1 changed files with 7 additions and 7 deletions
|
@ -334,19 +334,19 @@ use dioxus::prelude::*;
|
|||
static COUNT: GlobalSignal<i32> = Signal::global(|| 0);
|
||||
|
||||
#[component]
|
||||
fn MyComponent() -> Element {
|
||||
use_effect(|| {
|
||||
fn MyComponent() -> Element {{
|
||||
use_effect(|| {{
|
||||
// Grab the runtime from the MyComponent scope
|
||||
let runtime = Runtime::current().expect(\"Components run in the Dioxus runtime\");
|
||||
// Move the runtime into the web-sys closure scope
|
||||
let web_sys_closure = Closure::new(|| {
|
||||
let web_sys_closure = Closure::new(|| {{
|
||||
// Then create a guard to provide the runtime to the closure
|
||||
let _guard = RuntimeGuard::new(runtime);
|
||||
// and run whatever code needs the runtime
|
||||
tracing::info!(\"The count is: {COUNT}\");
|
||||
});
|
||||
})
|
||||
}
|
||||
tracing::info!(\"The count is: {{COUNT}}\");
|
||||
}});
|
||||
}})
|
||||
}}
|
||||
```"
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue