10 lines
176 B
Rust
10 lines
176 B
Rust
use yew::{classes, function_component, html, Html};
|
|
use yew_router::prelude::Link;
|
|
|
|
use crate::router::Route;
|
|
|
|
#[function_component]
|
|
pub fn Settings() -> Html {
|
|
html! {}
|
|
}
|