mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-06 05:17:42 +00:00
279f8397f7
- Create `SettingViews` component in `views/setting.rs`. - Update `views/mod.rs` to include the new `SettingViews` component. - Update routing in `main.rs` to include the new route for `SettingViews`.
10 lines
143 B
Rust
10 lines
143 B
Rust
use crate::components::Setting;
|
|
use dioxus::prelude::*;
|
|
|
|
#[component]
|
|
pub fn SettingViews() -> Element {
|
|
rsx! {
|
|
Setting {}
|
|
}
|
|
}
|