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