Add collab_ui2

This commit is contained in:
Conrad Irwin 2023-11-15 14:24:01 -07:00
parent 26d90a5e48
commit 84bcbf1128
17 changed files with 9348 additions and 1 deletions

View 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);
}