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