mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-03 00:54:15 -05:00
10 lines
146 B
Rust
10 lines
146 B
Rust
|
use leptos::*;
|
||
|
use melt_ui::*;
|
||
|
|
||
|
#[component]
|
||
|
pub fn DemoSlider(cx: Scope) -> impl IntoView {
|
||
|
view! { cx,
|
||
|
<Slider value=20.0/>
|
||
|
}
|
||
|
}
|