Remove old dashboard-container and home-component wrappers

This commit is contained in:
Ethan Girouard 2025-03-15 23:17:59 -04:00
parent c782aa2cd4
commit 5a71973388
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146

View File

@ -3,8 +3,6 @@ use leptos::prelude::*;
#[component]
pub fn Dashboard() -> impl IntoView {
view! {
<div class="dashboard-container home-component">
<h1 class="dashboard-header">Dashboard</h1>
</div>
<h1>"Dashboard"</h1>
}
}
}