16 lines
191 B
Rust
16 lines
191 B
Rust
|
mod topbar;
|
||
|
|
||
|
use yew::prelude::*;
|
||
|
use topbar::TopBar;
|
||
|
|
||
|
#[function_component]
|
||
|
fn app() -> Html {
|
||
|
html! {
|
||
|
<TopBar/>
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
yew::Renderer::<app>::new().render();
|
||
|
}
|