summaryrefslogtreecommitdiffstats
path: root/src/components/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/components/mod.rs20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/components/mod.rs b/src/components/mod.rs
index 879f99e..d2fb6b5 100644
--- a/src/components/mod.rs
+++ b/src/components/mod.rs
@@ -1,13 +1,17 @@
-pub mod sidebar;
-mod chats_list;
-mod new_chat;
-mod roster_list;
+// SPDX-FileCopyrightText: 2025 cel <cel@bunny.garden>
+//
+// SPDX-License-Identifier: AGPL-3.0-or-later
+
mod avatar;
+pub mod chat_header;
+mod chats_list;
+pub mod icon;
mod message;
-pub mod message_history_buffer;
pub mod message_composer;
-pub mod chat_header;
-mod overlay;
+pub mod message_history_buffer;
pub mod modal;
-pub mod icon;
+mod new_chat;
+mod overlay;
mod personal_status;
+mod roster_list;
+pub mod sidebar;