🎨 Isolate infra and ui components

The src/base.rs is still to be reworked.
This commit is contained in:
2024-04-04 14:27:58 +02:00
parent 92bf860101
commit 0ce0764204
67 changed files with 64 additions and 59 deletions

View File

@@ -1,8 +1,7 @@
#![allow(non_snake_case)]
mod components;
mod data;
mod matrix_interface;
mod infrastructure;
mod ui;
mod utils;
use dioxus::prelude::*;
@@ -11,9 +10,9 @@ use tracing::{debug, Level};
use crate::base::{login, sync_rooms};
use crate::base::{APP_SETTINGS, ROOMS, SESSION};
use crate::components::loading::LoadingPage;
use crate::components::login::Login;
use crate::components::main_window::MainWindow;
use crate::ui::components::loading::LoadingPage;
use crate::ui::components::login::Login;
use crate::ui::components::main_window::MainWindow;
mod base;