mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
chore: fix imports in tests
This commit is contained in:
parent
c953432659
commit
f2f35cd785
1 changed files with 5 additions and 2 deletions
|
@ -318,7 +318,7 @@ pub fn set_timeout_with_handle(
|
|||
/// listeners to prevent them from firing constantly as you type.
|
||||
///
|
||||
/// ```
|
||||
/// use leptos::{leptos_dom::helpers::debounce, logging::log, *};
|
||||
/// use leptos::{leptos_dom::helpers::debounce, logging::log, prelude::*, *};
|
||||
///
|
||||
/// #[component]
|
||||
/// fn DebouncedButton() -> impl IntoView {
|
||||
|
@ -507,7 +507,10 @@ pub fn window_event_listener_untyped(
|
|||
/// Creates a window event listener from a typed event, returning a
|
||||
/// cancelable handle.
|
||||
/// ```
|
||||
/// use leptos::{leptos_dom::helpers::window_event_listener, logging::log, *};
|
||||
/// use leptos::{
|
||||
/// ev, leptos_dom::helpers::window_event_listener, logging::log,
|
||||
/// prelude::*,
|
||||
/// };
|
||||
///
|
||||
/// #[component]
|
||||
/// fn App() -> impl IntoView {
|
||||
|
|
Loading…
Reference in a new issue