use yew::prelude::*; pub fn text_field_input(label: &str, id: &str, placeholder: Option<&str>, oninput: Callback) -> Html { html!{
} } pub fn checkbox_field_input(label: &str, id: &str, checked: bool, onclick: Callback) -> Html { html!{
} }