8 lines
115 B
Rust
8 lines
115 B
Rust
use yew::functional::*;
|
|
use yew::prelude::*;
|
|
|
|
#[function_component(Admin)]
|
|
pub fn admin() -> Html {
|
|
html! {}
|
|
}
|