This commit is contained in:
Mikhail Kilin
2026-01-31 03:48:50 +03:00
parent 1bf9b3d703
commit 644e36597d
37 changed files with 1070 additions and 600 deletions

14
src/ui/components/mod.rs Normal file
View File

@@ -0,0 +1,14 @@
// UI компоненты для переиспользования
pub mod modal;
pub mod input_field;
pub mod message_bubble;
pub mod chat_list_item;
pub mod emoji_picker;
// Экспорт основных функций
pub use modal::render_modal;
pub use input_field::render_input_field;
pub use message_bubble::render_message_bubble;
pub use chat_list_item::render_chat_list_item;
pub use emoji_picker::render_emoji_picker;