summaryrefslogtreecommitdiffstats
path: root/src/components/mod.rs
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-06-11 02:54:27 +0100
committerLibravatar cel 🌸 <cel@bunny.garden>2025-06-11 02:54:27 +0100
commit838e99fd1577c52121e148efabcd624114a8b9ad (patch)
treedaaa4e0d00e53a851bf967f668cbc121018d4a5f /src/components/mod.rs
parent8bd186fe47eda25b36f945f926ce19093d16fe39 (diff)
downloadmacaw-web-838e99fd1577c52121e148efabcd624114a8b9ad.tar.gz
macaw-web-838e99fd1577c52121e148efabcd624114a8b9ad.tar.bz2
macaw-web-838e99fd1577c52121e148efabcd624114a8b9ad.zip
fmt: everything
Diffstat (limited to '')
-rw-r--r--src/components/mod.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/components/mod.rs b/src/components/mod.rs
index 879f99e..0e2ffce 100644
--- a/src/components/mod.rs
+++ b/src/components/mod.rs
@@ -1,13 +1,13 @@
-pub mod sidebar;
-mod chats_list;
-mod new_chat;
-mod roster_list;
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;