use leptos::html::ElementChild; use leptos::{IntoView, component, view}; use leptos_router::nested_router::Outlet; use crate::components::localization::{I18n, LanguageSelector}; #[component] pub fn Common() -> impl IntoView { view! { "🏡" } }