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 {
2023-09-28 11:08:15 +00:00
html! {
<TopBar/>
}
}
fn main() {
yew::Renderer::<App>::new().render();
2023-09-28 11:08:15 +00:00
}