use yew::prelude::*; use yew_side_effect::title::Title; pub struct NotFound; impl Component for NotFound { type Message = (); type Properties = (); fn create(_ctx: &Context) -> Self { Self } fn view(&self, _ctx: &Context) -> Html { html! { <> <h1>{ "404" }</h1> </> } } }