use std::collections::HashSet; use crate::components::{Demo, DemoCode}; use leptos::*; use melt_ui::*; use prisms::highlight_str; #[component] pub fn CheckboxPage() -> impl IntoView { let value = create_rw_signal(false); let value = create_rw_signal(HashSet::new()); view! {