2025-10-07 10:59:52 +01:00

7 lines
110 B
Rust

use leptos::*;
#[component]
pub fn Placeholder() -> impl IntoView {
view! { <div>"Placeholder"</div> }
}