mentorenwahl/frontend/src/routes/login.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
124 B
Rust

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