use yew::prelude::*; pub struct Fetching; impl Component for Fetching { type Message = (); type Properties = (); fn create(_ctx: &Context) -> Self { Self } fn view(&self, _ctx: &Context) -> Html { html! {

{ "Fetching..." }

} } }