1 2 3 4 5 6 7 8
use leptos::prelude::*; use crate::components::ui::button::Button; #[component] pub fn DemoButton() -> impl IntoView { view! { <Button>"Button"</Button> } }