mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 22:54:12 +00:00
rustfmt
This commit is contained in:
parent
053dc6fa3e
commit
75357e974d
2 changed files with 2 additions and 3 deletions
|
@ -26,8 +26,7 @@ pub(crate) fn update_history(window: &Window, history: &History) {
|
|||
}
|
||||
}
|
||||
|
||||
pub(crate) fn update_scroll(window: &Window, history: &History) -> AnimationFrame
|
||||
{
|
||||
pub(crate) fn update_scroll(window: &Window, history: &History) -> AnimationFrame {
|
||||
let ScrollPosition { x, y } = history
|
||||
.state()
|
||||
.map(|state| serde_wasm_bindgen::from_value(state).unwrap_or_default())
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use dioxus::prelude::{ScopeId, ScopeState};
|
||||
use dioxus_router_core::Navigator;
|
||||
|
||||
use crate::{RouterError, utils::use_router_internal::use_router_internal};
|
||||
use crate::{utils::use_router_internal::use_router_internal, RouterError};
|
||||
|
||||
/// A hook that allows for programmatic navigation.
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue