peillute/views/
mod.rs

1//! Web interface components for the Peillute application
2//!
3//! This module contains the Dioxus components that make up the web interface,
4//! including navigation, home page, user management, and transaction actions.
5
6/// Navigation bar component
7mod navbar;
8pub use navbar::Navbar;
9
10/// Home page component
11mod home;
12pub use home::Home;
13
14/// System information component
15mod info;
16pub use info::Info;
17
18/// User management component
19mod user;
20pub use user::User;
21
22/// Transaction action components
23mod actions;
24pub use actions::{Deposit, History, Pay, Refund, Transfer, Withdraw};