This commit is contained in:
2026-09-18 20:06:16 +07:00
parent f9e538257a
commit 1b6ef6f574
7 changed files with 25 additions and 329 deletions
+1
View File
@@ -16,6 +16,7 @@ common = { path = "../crates/common" }
state = { path = "../crates/state" }
device = { path = "../crates/device" }
chat = { path = "../crates/chat" }
community = { path = "../crates/community" }
settings = { path = "../crates/settings" }
person = { path = "../crates/person" }
+3
View File
@@ -72,6 +72,9 @@ pub fn run() -> Result<(), JsValue> {
// Initialize app registry
chat::init(window, cx);
// Initialize community registry
community::init(window, cx);
// Root view
cx.new(|cx| Root::new(workspace::init(window, cx).into(), window, cx))
})