style: format againkjdfakbjfbkasjd

This commit is contained in:
Ilya Maximov 2022-02-23 20:00:01 +01:00
parent 4ab54274ac
commit 916dc64402
No known key found for this signature in database
GPG key ID: 1ACCDCC0429C9737
4 changed files with 8 additions and 4 deletions

View file

@ -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>>;

View file

@ -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.

View file

@ -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.

View file

@ -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;