This commit is contained in:
2025-05-29 21:27:15 -04:00
parent 0de755cfc9
commit adf682a981
12 changed files with 59 additions and 83 deletions

View File

@@ -32,7 +32,7 @@ pub fn MainNaviagation() -> Element {
pub fn Branding() -> Element {
rsx! {
div { class: "branding",
img {src: NAV_ICON, alt: "Aoba"}
img { src: NAV_ICON, alt: "Aoba" }
}
}
}
@@ -50,10 +50,7 @@ pub fn Utils() -> Element {
rsx! {
div { class: "utils",
div{
onclick: move |_| auth_context.logout(),
"Logout"
}
}
div { onclick: move |_| auth_context.logout(), "Logout" }
}
}
}