fix cargo fmt issues

Forgot to set up "cargo fmt" on save --new system.
This commit is contained in:
Ke7in 2024-08-21 16:41:04 -04:00
parent 09b08f64f5
commit 44cab1027d

View file

@ -6,7 +6,10 @@ use crate::core::impl_ssr_safe_method;
#[cfg(not(feature = "ssr"))]
use leptos::*;
use wasm_bindgen::JsValue;
use web_sys::{Document, Element, HtmlCollection, HtmlElement, HtmlHeadElement, Location, NodeList, VisibilityState, Window};
use web_sys::{
Document, Element, HtmlCollection, HtmlElement, HtmlHeadElement, Location, NodeList,
VisibilityState, Window,
};
/// SSR safe `document()`.
/// This returns just a new-type wrapper around `Option<Document>`.