10 lines
189 B
Rust
10 lines
189 B
Rust
use leptos::*;
|
|
|
|
#[component]
|
|
pub fn Dashboard() -> impl IntoView {
|
|
view! {
|
|
<div class="dashboard-container home-component">
|
|
<h1>Dashboard</h1>
|
|
</div>
|
|
}
|
|
} |