use leptos::*; use leptos_meta::*; use leptos_router::*; use crate::home_page::HomePage; use crate::locales::trl; #[component] pub fn App(cx: Scope) -> impl IntoView { // Provides context that manages stylesheets, titles, meta tags, etc. provide_meta_context(cx); //provide_context(cx, DialogOpener::new(cx)); view! { cx,
// // // ///*
// injects a stylesheet into the document
// id=leptos means cargo-leptos will hot-reload this stylesheet
*/ } }