1 2 3 4 5 6 7 8 9
use yew::{Children, Properties}; #[derive(Properties, PartialEq)] pub struct Props { pub label: String, pub title: String, pub place_holder: String, pub required: bool, }