Add collab_ui2
This commit is contained in:
parent
26d90a5e48
commit
84bcbf1128
17 changed files with 9348 additions and 1 deletions
11
crates/collab_ui2/src/notifications.rs
Normal file
11
crates/collab_ui2/src/notifications.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
use gpui::AppContext;
|
||||
use std::sync::Arc;
|
||||
use workspace::AppState;
|
||||
|
||||
pub mod incoming_call_notification;
|
||||
pub mod project_shared_notification;
|
||||
|
||||
pub fn init(app_state: &Arc<AppState>, cx: &mut AppContext) {
|
||||
incoming_call_notification::init(app_state, cx);
|
||||
project_shared_notification::init(app_state, cx);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue