Streamlined grpc auth

Added ShareX Destiation on client
This commit is contained in:
2025-05-21 22:07:57 -04:00
parent acd30750a9
commit 7061b4c313
14 changed files with 155 additions and 46 deletions

View File

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