9 lines
125 B
Rust
9 lines
125 B
Rust
use leptos::prelude::*;
|
|
|
|
#[component]
|
|
pub fn Dashboard() -> impl IntoView {
|
|
view! {
|
|
<h1>"Dashboard"</h1>
|
|
}
|
|
}
|