use yew::prelude::*; use yew_styles::layouts::{ container::{Container, Direction, Wrap}, item::{Item, ItemLayout}, }; pub struct About; impl Component for About { type Message = (); type Properties = (); fn create(_: Self::Properties, _: ComponentLink) -> Self { About {} } fn update(&mut self, _: Self::Message) -> ShouldRender { false } fn change(&mut self, _: Self::Properties) -> ShouldRender { false } fn view(&self) -> Html { html! {

{"Stuff used for building this website"}

} } }