Platform restructured into crates/, added AI service and detector,
migrated control-center-ui to Leptos 0.8
7 lines
119 B
Rust
7 lines
119 B
Rust
use leptos::prelude::*;
|
|
|
|
#[component]
|
|
pub fn Placeholder() -> impl IntoView {
|
|
view! { <div>"Placeholder"</div> }
|
|
}
|