chore: fix imports in tests
This commit is contained in:
parent
c953432659
commit
f2f35cd785
|
@ -318,7 +318,7 @@ pub fn set_timeout_with_handle(
|
||||||
/// listeners to prevent them from firing constantly as you type.
|
/// 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]
|
/// #[component]
|
||||||
/// fn DebouncedButton() -> impl IntoView {
|
/// 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
|
/// Creates a window event listener from a typed event, returning a
|
||||||
/// cancelable handle.
|
/// 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]
|
/// #[component]
|
||||||
/// fn App() -> impl IntoView {
|
/// fn App() -> impl IntoView {
|
||||||
|
|
Loading…
Reference in New Issue