瀏覽代碼

style: format againkjdfakbjfbkasjd

Ilya Maximov 3 年之前
父節點
當前提交
916dc64402

+ 2 - 1
packages/hooks/src/use_shared_state.rs

@@ -2,7 +2,8 @@ use dioxus_core::{ScopeId, ScopeState};
 use std::{
     cell::{Cell, Ref, RefCell, RefMut},
     collections::HashSet,
-    rc::Rc, sync::Arc,
+    rc::Rc,
+    sync::Arc,
 };
 
 type ProvidedState<T> = RefCell<ProvidedStateInner<T>>;

+ 2 - 1
packages/hooks/src/useref.rs

@@ -1,7 +1,8 @@
 use dioxus_core::ScopeState;
 use std::{
     cell::{Ref, RefCell, RefMut},
-    rc::Rc, sync::Arc,
+    rc::Rc,
+    sync::Arc,
 };
 
 /// `use_ref` is a key foundational hook for storing state in Dioxus.

+ 2 - 1
packages/hooks/src/usestate.rs

@@ -4,7 +4,8 @@ use dioxus_core::prelude::*;
 use std::{
     cell::{RefCell, RefMut},
     fmt::{Debug, Display},
-    rc::Rc, sync::Arc,
+    rc::Rc,
+    sync::Arc,
 };
 
 /// Store state between component renders.

+ 2 - 1
packages/router/src/service.rs

@@ -2,7 +2,8 @@ use gloo::history::{BrowserHistory, History, HistoryListener, Location};
 use std::{
     cell::{Cell, Ref, RefCell},
     collections::{HashMap, HashSet},
-    rc::Rc, sync::Arc,
+    rc::Rc,
+    sync::Arc,
 };
 
 use dioxus_core::ScopeId;