frontend/src/main.rs

16 lines
191 B
Rust
Raw Normal View History

2023-09-28 11:08:15 +00:00
mod topbar;
use yew::prelude::*;
use topbar::TopBar;
#[function_component]
fn app() -> Html {
html! {
<TopBar/>
}
}
fn main() {
yew::Renderer::<app>::new().render();
}