Skip to main content

fractal/components/dialogs/
mod.rs

1mod auth;
2mod message_dialogs;
3mod room_preview;
4mod toastable;
5mod user_profile;
6
7pub(crate) use self::{
8    auth::{AuthDialog, AuthError},
9    message_dialogs::*,
10    room_preview::RoomPreviewDialog,
11    toastable::{ToastableDialog, ToastableDialogExt, ToastableDialogImpl},
12    user_profile::UserProfileDialog,
13};