fixed tests

This commit is contained in:
Maccesch 2024-07-29 01:09:24 +01:00
parent 709757996e
commit 5b8cfd4449

View file

@ -22,7 +22,7 @@ use leptos::*;
/// # /// #
/// # #[component] /// # #[component]
/// # fn Demo() -> impl IntoView { /// # fn Demo() -> impl IntoView {
/// let locale = use_locale(&["en".to_string(), "de".to_string(), "fr".to_string()]); /// let locale = use_locale(["en", "de", "fr"]);
/// # /// #
/// # view! { } /// # view! { }
/// # } /// # }