use leptos::{ IntoView, component, html::Input, prelude::{ClassAttribute, ElementChild, GlobalAttributes, NodeRef, NodeRefAttribute}, view, }; use crate::components::get_id; #[component] pub fn CheckboxPlaceholder( label: &'static str, node_ref: NodeRef, ) -> impl IntoView { let id = get_id(); view! {
} }