first commit

This commit is contained in:
lennlouisgeek
2026-04-16 01:55:55 +08:00
commit ccfc77b734
18 changed files with 30087 additions and 0 deletions

12
src/guide_router.rs Normal file
View File

@@ -0,0 +1,12 @@
use crate::components::{main_page::MainPage,
filters_rate_threshold::FilterRateThreshold,
};
use dioxus::prelude::*;
#[derive(Routable, Clone, PartialEq)]
pub enum Route {
#[route("/")]
MainPage,
#[route("/filter_rate_threshold")]
FilterRateThreshold,
}