WIP ContextMenu Renderer

This commit is contained in:
2025-08-09 17:14:28 -04:00
parent 364b23e62a
commit 6df6de098b
5 changed files with 94 additions and 46 deletions

View File

@@ -1,6 +1,11 @@
use dioxus::prelude::*;
use crate::{Route, components::Navbar, contexts::AuthContext, views::Login};
use crate::{
Route,
components::{ContextMenuRoot, Navbar},
contexts::AuthContext,
views::Login,
};
#[component]
pub fn MainLayout() -> Element {
@@ -13,6 +18,7 @@ pub fn MainLayout() -> Element {
}
return rsx! {
ContextMenuRoot { }
Navbar {}
div { id: "content", Outlet::<Route> {} }
};