use leptos::prelude::{AddAnyAttr, ElementChild, IntoView, StyleAttribute, component, view}; use leptos_router::{NavigateOptions, hooks::use_navigate}; use thaw::{Flex, FlexJustify, LayoutHeader}; #[component] pub fn SiteHeader() -> impl IntoView { let navigate = use_navigate(); view! {

"Rocie"

} }