Files
komp_ac/client/src/components/common.rs
2025-05-29 19:46:58 +02:00

17 lines
348 B
Rust

// src/components/common.rs
pub mod command_line;
pub mod status_line;
pub mod text_editor;
pub mod background;
pub mod dialog;
pub mod autocomplete;
pub mod find_file_palette;
pub use command_line::*;
pub use status_line::*;
pub use text_editor::*;
pub use background::*;
pub use dialog::*;
pub use autocomplete::*;
pub use find_file_palette::*;