use leptos::*; /// A loading indicator #[component] pub fn Loading() -> impl IntoView { view! {
} } /// A full page, centered loading indicator #[component] pub fn LoadingPage() -> impl IntoView { view!{
} }