about summary refs log tree commit diff
path: root/frontend/src/main.rs
blob: 22b15990670c01e8278905cf8f8d255155a72f68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
use yew::prelude::*;

#[function_component(App)]
fn app() -> Html {
    html! {
        <h1>{ "Hello World" }</h1>
    }
}

fn main() {
    yew::start_app::<App>();
}