refactor: rename view.rs to ui.rs

This commit is contained in:
doryan 2024-08-09 15:13:04 +04:00
parent f3ae716ed4
commit da3cb52046
3 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ mod model;
mod view;
use controller::*;
use view::view::*;
use view::ui::*;
#[tokio::main]
async fn main() {

View File

@ -2,4 +2,4 @@ pub mod components;
pub mod pages;
pub mod properties;
pub mod styles;
pub mod view;
pub mod ui;