use crate::*;
#[derive(Clone, Copy, Data, New)]
pub struct UseSelect {
#[get(pub, type(copy))]
#[set(pub)]
pub selected_fruit: Signal<String>,
#[get(pub, type(copy))]
#[set(pub)]
pub selected_country: Signal<String>,
#[get(pub, type(copy))]
#[set(pub)]
pub selected_city: Signal<String>,
#[get(pub, type(copy))]
#[set(pub)]
pub feedback: Signal<String>,
#[get(pub, type(copy))]
#[set(pub)]
pub textarea_content: Signal<String>,
}