changing components infrastructure

This commit is contained in:
filipriec
2025-03-22 15:36:49 +01:00
parent 9bf1d065d5
commit fabe1e0ca7
9 changed files with 17 additions and 6 deletions

View File

@@ -9,7 +9,8 @@ use crate::config::config::Config;
use crate::ui::handlers::{form::FormState, render::render_ui};
use crate::modes::handlers::event::EventHandler;
use crate::state::state::AppState;
use crate::components::handlers::{intro::IntroState, admin_panel::AdminPanelState};
use crate::components::handlers::{admin_panel::AdminPanelState};
use crate::components::intro::{intro::IntroState};
pub async fn run_ui() -> Result<(), Box<dyn std::error::Error>> {
let config = Config::load()?;