Files
como-web/src/routes/dash/home.rs
2023-10-20 23:06:21 +02:00

13 lines
224 B
Rust

use leptos::*;
use crate::features::dashboard_list_view::DashboardList;
#[component]
pub fn DashHomePage() -> impl IntoView {
view! {
<div class="home-dash">
<DashboardList/>
</div>
}
}