thaw/demo/src/pages/mod.rs
2023-10-19 22:31:14 +08:00

59 lines
914 B
Rust

mod alert;
mod auto_complete;
mod avatar;
mod badge;
mod button;
mod card;
mod checkbox;
mod color_picker;
mod components;
mod divider;
mod grid;
mod home;
mod icon;
mod image;
mod input;
mod input_number;
mod menu;
mod message;
mod mobile;
mod modal;
mod nav_bar;
mod radio;
mod select;
mod slider;
mod space;
mod tabbar;
mod table;
mod tabs;
mod toast;
pub use alert::*;
pub use auto_complete::*;
pub use avatar::*;
pub use badge::*;
pub use button::*;
pub use card::*;
pub use checkbox::*;
pub use color_picker::*;
pub use components::*;
pub use divider::*;
pub use grid::*;
pub use home::*;
pub use icon::*;
pub use image::*;
pub use input::*;
pub use input_number::*;
pub use menu::*;
pub use message::*;
pub use mobile::*;
pub use modal::*;
pub use nav_bar::*;
pub use radio::*;
pub use select::*;
pub use slider::*;
pub use space::*;
pub use tabbar::*;
pub use table::*;
pub use tabs::*;
pub use toast::*;