mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 16:28:15 +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`.
7 lines
105 B
Rust
7 lines
105 B
Rust
mod home;
|
|
pub use home::Home;
|
|
mod navbar;
|
|
pub use navbar::Navbar;
|
|
mod setting;
|
|
pub use setting::Setting;
|