mentorenwahl/frontend/src/routes/home.rs
Dominic Grimm 860ae7ed5e
All checks were successful
continuous-integration/drone/push Build is passing
Rewrite frontend in rust with yew
2022-11-04 21:23:36 +01:00

9 lines
123 B
Rust

use yew::prelude::*;
#[function_component(Home)]
pub fn home() -> Html {
html! {
<h1>{ "HOME!" }</h1>
}
}