Move dashboard to pages
All checks were successful
Push Workflows / clippy (push) Successful in 58s
Push Workflows / leptos-test (push) Successful in 1m28s
Push Workflows / test (push) Successful in 2m2s
Push Workflows / docs (push) Successful in 2m26s
Push Workflows / build (push) Successful in 2m52s
Push Workflows / docker-build (push) Successful in 8m39s
Push Workflows / nix-build (push) Successful in 22m8s
All checks were successful
Push Workflows / clippy (push) Successful in 58s
Push Workflows / leptos-test (push) Successful in 1m28s
Push Workflows / test (push) Successful in 2m2s
Push Workflows / docs (push) Successful in 2m26s
Push Workflows / build (push) Successful in 2m52s
Push Workflows / docker-build (push) Successful in 8m39s
Push Workflows / nix-build (push) Successful in 22m8s
This commit is contained in:
10
src/pages/dashboard.rs
Normal file
10
src/pages/dashboard.rs
Normal file
@ -0,0 +1,10 @@
|
||||
use leptos::prelude::*;
|
||||
|
||||
#[component]
|
||||
pub fn Dashboard() -> impl IntoView {
|
||||
view! {
|
||||
<div class="dashboard-container home-component">
|
||||
<h1 class="dashboard-header">Dashboard</h1>
|
||||
</div>
|
||||
}
|
||||
}
|
@ -5,3 +5,4 @@ pub mod albumpage;
|
||||
pub mod artist;
|
||||
pub mod songpage;
|
||||
pub mod search;
|
||||
pub mod dashboard;
|
||||
|
Reference in New Issue
Block a user