mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
rustfmt
This commit is contained in:
parent
f81ecf5974
commit
152bad6433
1 changed files with 3 additions and 3 deletions
|
@ -7,9 +7,9 @@ fn main() {
|
|||
}
|
||||
|
||||
fn app(cx: Scope) -> Element {
|
||||
let page_coordinates = use_state(&cx, ||"".to_string());
|
||||
let screen_coordinates = use_state(&cx, ||"".to_string());
|
||||
let offset_coordinates = use_state(&cx, ||"".to_string());
|
||||
let page_coordinates = use_state(&cx, || "".to_string());
|
||||
let screen_coordinates = use_state(&cx, || "".to_string());
|
||||
let offset_coordinates = use_state(&cx, || "".to_string());
|
||||
|
||||
let container_style = r#"
|
||||
display: flex;
|
||||
|
|
Loading…
Reference in a new issue