diff --git a/crates/ascend/src/components/icons.rs b/crates/ascend/src/components/icons.rs index c4b4f1d..a8bc37d 100644 --- a/crates/ascend/src/components/icons.rs +++ b/crates/ascend/src/components/icons.rs @@ -49,3 +49,21 @@ pub fn Forward() -> impl IntoView { } } + +#[component] +pub fn Check() -> impl IntoView { + view! { + + + + } +} diff --git a/crates/ascend/src/pages/wall.rs b/crates/ascend/src/pages/wall.rs index 8357baa..18ea7b6 100644 --- a/crates/ascend/src/pages/wall.rs +++ b/crates/ascend/src/pages/wall.rs @@ -97,6 +97,7 @@ pub fn Wall() -> impl IntoView { }; let foo = RwSignal::new(false); + let bar = RwSignal::new(false); leptos::view! {
@@ -132,7 +133,7 @@ pub fn Wall() -> impl IntoView {
-
+
impl IntoView { required="" bind:checked=foo /> -
+ +
+ + +
};