7 lines
119 B
Rust
Raw Normal View History

use leptos::prelude::*;
2025-10-07 10:59:52 +01:00
#[component]
pub fn Placeholder() -> impl IntoView {
view! { <div>"Placeholder"</div> }
}