mentorenwahl/frontend/src/routes/info.rs
Dominic Grimm 8055a5e4db
Some checks failed
continuous-integration/drone/push Build is failing
Update
2023-01-17 06:56:19 +01:00

24 lines
434 B
Rust

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