diff --git a/frontend/src/app.rs b/frontend/src/app.rs index d6473a4..eb82420 100644 --- a/frontend/src/app.rs +++ b/frontend/src/app.rs @@ -12,6 +12,15 @@ use leptos_shadcn_toast::SonnerProvider; #[component] pub fn App() -> impl IntoView { + view! { + + + + } +} + +#[component] +fn InnerApp() -> impl IntoView { crate::store::provide_torrent_store(); let store = use_context::(); @@ -70,126 +79,124 @@ pub fn App() -> impl IntoView { }); view! { - - - - "404 Not Found" }> - + + "404 Not Found" }> + } + } /> + } + } /> + + } - } /> - } - } /> - - - // Sidebar skeleton - - - - - - - - - - - - // Main content skeleton - - // Header skeleton - - - - - - // Table skeleton rows - - - - - - - - - // Status bar skeleton - - - - - - }.into_any()> - - - - - - - - - - - - }.into_any() - }/> - - - - - "Settings Page (Coming Soon)" - - - } - }/> - - - - + }); + + view! { + + // Sidebar skeleton + + + + + + + + + + + + // Main content skeleton + + // Header skeleton + + + + + + // Table skeleton rows + + + + + + + + + // Status bar skeleton + + + + + + }.into_any()> + + + + + + + + + + + + }.into_any() + }/> + + + + + "Settings Page (Coming Soon)" + + + + } + }/> + + + } }